/* Navbar styles */

.set img {
    height: 50px;
}

.navbar {
    background-color: #ffffff;
    color: #1f1e1e;
    display: flex;
    /* justify-content: space-between; */
    gap: 35px;
    align-items: center;
    padding: 3px 90px;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
}

.navbar a {
    color: #000000;
    text-decoration: none;
    margin-right: 15px;
    /* font-weight: bold; */
}

.navbar .logo {
    font-size: 24px;
    /* font-weight: bold; */
}

.navbar .menu {
    display: flex;
    align-items: center;
}

.navbar .menu-item {
    position: relative;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    color: #333333;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
    padding: 10px 0;
    border-radius: 5px;
    min-width: 150px;
}

.dropdown-content a {
    color: #333333;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #f4f4f9;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Responsive navbar */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }

    .navbar .menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar .menu-item {
        margin-bottom: 10px;
    }
}

/* nav bar end */

/* form start */
body {
    font-size: 12px;
    /* background-color: #f4f4f9;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; */
}

.cntr {
    margin: 0;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}

.signin-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.signin-container h1 {
    text-align: center;
    color: #333333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    /* font-weight: bold; */
    color: #555555;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #dddddd;
    border-radius: 5px;
}

.form-group input:focus {
    border-color: #007bff;
    outline: none;
}

.signin-button {
    width: 100%;
    padding: 10px;
    background-color: #ff9900;
    color: #ffffff;
    font-size: 16px;
    /* font-weight: bold; */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signin-button:hover {
    background-color: #0056b3;
}

.forgot-password {
    text-align: center;
    margin-top: 15px;
}

.forgot-password a {
    color: #007bff;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.error-message {
    color: red;
    text-align: center;
    margin-top: 10px;
}

/* form end */

/* dasboard start */
.dashboard-container {
    text-align: center;
    background-color: #ffffff;
    /* padding: 30px; */
    border-radius: 8px;
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
    /* max-width: 500px; */
    width: 100%;
}

.dashboard-container h1 {
    color: #333333;
    margin-bottom: 20px;
}

.dashboard-container p {
    color: #555555;
    font-size: 16px;
    margin-bottom: 20px;
}

.logout-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.logout-button:hover {
    background-color: #0056b3;
}

/* form end */

/* dashboard start */
.container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 1120px;
    margin: 0 auto;
}

.container a {
    color: #000000;
    text-decoration: none;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 2px solid #ddd;
}

.header h2 {
    font-size: 15px;
    /* color: #333; */
}

.search-bar input {
    padding: 8px;
    width: 200px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Table Section */
table {
    width: 116%;
    border-collapse: collapse;
}

th,
td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #243A7A;
    color: #fff;
    /* font-weight: bold; */
}

td {
    background-color: #f9f9f9;
}

.radio-container {
    display: flex;
    align-items: center;
}

.radio-container label {
    margin-left: 5px;
    font-size: 14px;
    background-color: #FFCC99;
    padding: 5px 10px;
    border-radius: 50%;
    /* font-weight: bold; */
}

.status {
    color: red;
    /* font-weight: bold; */
    font-size: 12px;
}

.footer {
    text-align: right;
    padding: 25px;
    font-size: 12px;
    color: #666;
}

/* Responsive Table */
@media (max-width: 768px) {

    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    thead {
        display: none;
        /* Hide table headers */
    }

    tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        background: #fff;
        /* width: 78%; */
        max-width: 345px;
    }

    td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px;
        border: none;
        position: relative;
    }

    td::before {
        content: attr(data-label);
        /* font-weight: bold; */
        color: #243A7A;
        text-transform: uppercase;
    }

    .radio-container label {
        padding: 4px 8px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-bar input {
        width: 100%;
        margin-top: 10px;
    }
    .fnt{
        width: 167%;
    }
}

/* dashboard end */


/* dpf file start */

/* .sets ul{
    list-style: none;
    line-height: 2.5;
}
.seet ul{
    list-style: none;
    line-height: 2.5;
}
.flx{
    display: flex;
    gap: 350px;
}
@media (max-width: 768px) {
    .flx {
        gap: 20px; 
        align-items: center; 
    }
}

@media (max-width: 480px) {
    .sets ul,
    .seet ul {
        line-height: 2; 
    }

    .flx {
        gap: 10px; 
    }
} */

/* pdf start */
.container {
    width: 100%;
    max-width: 90%;
    margin: 20px auto;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header {
    background-color: #173a8a;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.header .title {
    display: flex;
    align-items: center;
}

.header .title span {
    margin-left: 8px;
}

.header button {
    background-color: #1a53ff;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
}

.header button:hover {
    background-color: #0040cc;
}

.details {
    padding: 20px;
}

.details p {
    margin: 8px 0;
}

.dropdowns {
    cursor: pointer;
    color: #0040cc;
    /* font-weight: bold; */
    display: flex;
    align-items: center;
}

.dropdowns::before {
    content: '\25B6';
    margin-right: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.dropdowns.open::before {
    transform: rotate(90deg);
}

.dropdowns-contents {
    display: none;
    margin-left: 20px;
}

.dropdowns-contents.open {
    display: block;
}

.sets ul {
    list-style: none;
    line-height: 2.5;
}

.seet ul {
    list-style: none;
    line-height: 2.5;
}

.flx {
    display: flex;
    /* gap: 50px; */
}

.flxx {
    display: flex;
    /* gap: 50px; */
}

@media (max-width: 768px) {
    .flx {
        gap: 20px;
        max-width: 600px;
    }
}

@media (max-width: 480px) {

    .sets ul,
    .seet ul {
        line-height: 2;
        padding: 0;
    }

    .flx {
        gap: 10px;
        /* max-width: 600px; */
    }
}

.program-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    /* max-width: 600px; */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.program-status {
    margin-top: 8px;
    font-size: 14px;
    color: #b00020;
    /* Red color for 'Withdrawn' */
}

.button-group {
    margin-top: 16px;
    display: flex;
    gap: 8px;
}

.button {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.button:hover {
    background-color: #e0e0e0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
