* {
    margin: 0px;
    padding: 0px;
}
img.logo {
    width: 260px;
}
.navbar {
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
    height: 70px; /* Adjust as needed */
}
th, td {
    border: 0.2px solid gray;
    padding: 2px;
    text-align: center;
    height: 30px;
    font-weight: normal; /* Removes boldness */
}
table {
    width: 50%;
    border-collapse: collapse;
    text-align: center;
}
th {
    background-color: #3A5DAE;
    color: white;
    padding: 6px;
    font-size: larger;
    font-family: inherit;
}
td {
    padding: 6px;
    border: 1px solid #707070;
    font-family: inherit;
    color: #606060;
}
tr:nth-child(odd) {
    background-color: white;
    font-family: inherit;
    color:#707070;
}
tr:nth-child(even) {
    background-color: #bbbbbb1f;
    font-family: inherit;
    color:#707070;
}
/* Adjust column widths */
/* Remove underline from all links */
table a {
    text-decoration: none;
    color: rgb(56, 56, 56); /* Keep it blue for visibility, change as needed */
}
/* Optional: Change color when hovered */
table a:hover {
    text-decoration: underline;
}
h3{
    font-size: large;
    font-family: inherit;
    color:#707070;
}
span.material-icons {
    color:#707070;
    cursor:pointer;
}
th:nth-child(1), td:nth-child(1) { /* S.No Column */
    width: 10%;
}
th:nth-child(2), td:nth-child(2) { /* Application Name Column */
    width: 40%;
    color: 585858;
}
th:nth-child(3), td:nth-child(3),  /* Link Column */
th:nth-child(4), td:nth-child(4) { /* Visit Column */
    width: 20%;
}
body {
    background-color: #8080801f;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.form-box {
    background-color: white;
    width: 90%;
    height: 450px;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 10px 13px rgba(100, 100, 100, 0.021);
}