* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    background-color: #666;
}

body {
    font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3 {
    font-family: 'Roboto Slab', serif;
}


header {
    background-color: #333;
    padding: 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left,
.nav-right {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-left li,
.nav-right li {
    margin: 0 15px;
}

.nav-left li a,
.nav-right li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li a[href$=".pdf"] {
    color: #ff6700;
    border: 1px solid #ff6700;
}

nav ul li a[href$=".pdf"]:hover {
    background-color: #ff6700;
    color: #fff;
}


.nav-left li a:hover,
.nav-right li a:hover {
    background-color: #555;
    color: #f0f0f0;
}

.logged-in {
    color: #ff6700;
    font-size: 18px;
    padding: 10px;
}

@media (max-width: 950px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-left,
    .nav-right {
        flex-direction: column;
        width: 100%;
    }

    .nav-left li,
    .nav-right li {
        margin: 12px 0 12px 0;
        font-size: 25px;
    }

    .nav-left li a,
    .nav-right li a {
        width: 100%;
        text-align: left;
        padding: 10px 20px;
    }

    .logged-in {
        color: #ff6700;
        font-size: 18px;
        padding: 5px;
    }
}

/* index.php */
.project-info {
    background-color: #777;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.project-info h1 {
    font-size: 36px;
    color: black;
    margin-bottom: 20px;
}

.project-info p {
    font-size: 18px;
    color: white;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 28px;
    color: black;
    margin-bottom: 30px;
}

.team-members {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.team-member {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    width: 200px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.team-member img {
    width: 100%;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.team-member img:hover {
    transform: scale(1.1);
}

.team-member p {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

@media (max-width: 768px) {
    .team-members {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        width: 100%;
        max-width: 300px;
    }
}


/* reports */
.centering {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upload-container {
    background-color: #888;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    margin-bottom: 40px;
    width: 80%;
    text-align: center;
}

.upload-form {
    display: flex;
    flex-direction: column;
}

.upload-form label {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.upload-form input[type="file"] {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
}

.submit-button {
    background-color: #ff6700;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #e05e00;
}

.reports-container {
    background-color: #888;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    width: 80%;
}

.reports-container h2 {
    font-size: 24px;
    color: black;
    margin-bottom: 20px;
}

.reports-list {
    list-style-type: none;
    padding: 0;
}

.report-item {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.report-item a {
    color: #007bff;
    text-decoration: none;
}

.report-item a:hover {
    text-decoration: underline;
}

.delete-link {
    color: #dc3545;
    margin-left: 20px;
}

.delete-link:hover {
    text-decoration: underline;
}

.no-reports {
    color: #666;
    font-style: italic;
    padding: 10px;
    border-radius: 5px;
    background-color: #f0f0f0;
}


/* project status */
.project-status-container {
    width: 80%;
    margin: 40px auto;
    background-color: #888;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-status-container h1 {
    text-align: center;
    font-size: 2.5em;
    color: black;
    margin-bottom: 40px;
}

.project-status-container .add-record-button {
    margin-bottom: 30px;
}

.project-status-container .add-record-button input[type="button"] {
    padding: 12px 30px;
    background-color: #ff6700;
    border: none;
    color: white;
    font-size: 1.2em;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.project-status-container .add-record-button input[type="button"]:hover {
    background-color: #e05e00;
    transform: scale(1.05);
}

.status-entry {
    background-color: #ccc;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 900px;
}

.status-entry h2 {
    font-size: 1.8em;
    color: black;
    margin-bottom: 15px;
}

.status-entry p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.status-entry strong {
    color: black
}


/* login */
.login {
    background-color: #333;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;

}

.login h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
    text-align: center;
}

.login label {
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
    display: block;
}

.login input[type="text"],
.login input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.login input[type="text"]:focus,
.login input[type="password"]:focus {
    border-color: #007bff;
    outline: none;
    background-color: #fff;
}

.login input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #ff6700;
    color: #333;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.login input[type="submit"]:hover {
    background-color: #333;
    color: #ff6700;
    box-shadow: 0 0 0 2px #ff6700;
}

.login input[type="submit"]:active {
    background-color: orangered;
    color: black;
}

.login input[type="submit"]:focus {
    outline: none;
}



/* add record */
.submit-form {
    background-color: #999;
    padding: 30px;
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
}

.participant {
    margin-bottom: 5px;

}

.submit-form h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
    text-align: center;
}

.submit-form label {
    font-weight: bold;
}

.submit-form input[type="text"],
.submit-form input[type="date"],
.submit-form select,
.submit-form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #fff;
    transition: border-color 0.3s ease;
}

.submit-form input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #ff6700;
    color: #333;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.submit-form input[type="submit"]:hover {
    background-color: #333;
    color: #ff6700;
    box-shadow: 0 0 0 2px #ff6700;
}

.submit-form input[type="submit"]:active {
    background-color: orangered;
    color: black;
}

.submit-form input[type="submit"]:focus {
    outline: none;
}