* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    /*width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 15px;*/
    margin-top: 33px;
    width: 100%;
    max-width: 100%;
    padding: 15px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;*/
    /*border-bottom: 1px solid #007bff;*/*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 10px;
}

header h1 {
    font-size: 1.5em;
    color: #246363;
}

.logo img {
    width: 150px;
}

.logout-button{
    display: flex;
}
.success-message {
    margin: 20px 0;
    padding: 10px;
    color: #28a745;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    text-align: center;
    font-size: 1.1em;
}

.auth-links {
    display: flex;
    align-items: center;
}
.icon-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #007bff; /* Adjust to your preferred color */
    font-size: 16px; /* Adjust as needed */
    margin-left: 15px; /* Space between login/logout items */
}

.icon-link i {
    margin-right: 8px; /* Space between icon and text */
}

/* Optional: Adjust hover effect */
.icon-link:hover {
    color: #0056b3; /* Darker color on hover */
}

.document-section {
    margin-top: 25px;
}

.document-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.document-table th, .document-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-size: 13px;
}

.document-table th {
    background-color: #007bff;
    color: white;
    /*text-transform: uppercase;*/
    text-transform: capitalize;
}

.document-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.document-table td a {
    color: #007bff;
    text-decoration: none;
}

.document-table td a:hover {
    text-decoration: underline;
}

.upload-link {
    display: inline-block;
    padding: 12px 20px;
    background-color: #007bff;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.upload-link:hover {
    background-color: #0056b3;
}


/* Optional: Adjust hover effect */
.edit-button:hover {
    color: #0056b3; /* Darker color on hover */
}


/*end*/

@media screen and (max-width: 768px) {
    header h1 {
        font-size: 1em;
    }

    .document-table th, .document-table td {
        font-size: 12px;
        padding: 10px;
    }

    .upload-link {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }
}

/*upload form start*/
form {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    margin-bottom: 10px;
}

input[type="text"], input[type="file"] {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

button {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}
/*upload form End*/
/*edit start*/
.edit-button {
    padding: 8px 12px;
    /*background-color: #cccccc;*/ /* Light grey */
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}


.delete-button {
    color: #dc3545; /* Red color for delete */
}
.edit-button i,
.delete-button i {
    
}

.delete-button:hover {
    color: #c82333; /* Darker red on hover */
}

/* Optional: Adjust hover effect */
.edit-button:hover {
    color: #f59e55; /* Darker color on hover */
}
.logoutcss{
    margin-left:82%;
}
/*edit end*/
