/* CSS for the entire page */

/* Common styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.bodycontainer {
    padding: 1%;

}
/*nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #ad0a0a;
    overflow: hidden;
}

nav ul li {
    float: left;
}*/
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #ad0a0a;
    overflow: hidden;
    display: flex; /* Add this line */
    justify-content: center; /* Add this line */
}

nav ul li {
    /* Remove float: left; */
    display: inline-block; /* Add this line */
}

nav ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav ul li a:hover {
    background-color: #111;
}

.container {
    background-color: #fff; /* Updated background color */
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    max-width: 100%;
}


.file {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.file h3 {
    margin-top: 0;
}

.file .content {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.file .content img {
    margin-right: 10px;
}

.file .actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Updated styles for download button */
.download-btn,
.remove-btn {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    text-decoration: none; /* Add text-decoration to remove underline */
}

.remove-btn {
    background-color: #dc3545;
    margin-left: auto; /* Align remove button to the right */
    float: right;
}

.download-icon,
.remove-icon {
    margin-right: 8px; /* Add space between icon and text */
}

.download-btn {
    margin-right: 10px; /* Add margin-right to create space between buttons */
    float: left;
}

.download-btn:hover {
    background-color: #0056b3;
}

.download-btn i {
    margin-right: 5px; /* Add space between icon and text */
}

/* Styles for register.html, update_password.html, and login.html pages */

h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="password"],
button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

button {
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}


.container1 {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #333;
}


form {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}


/*
input[type="text"],
input[type="password"],
input[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #4caf50;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
}
*/