/* CSS for STEM I Research Proposal Subpage */

/* Mobile-first: large side margins for mobile devices */
@media (max-width: 768px) {
    .entire-content {
        padding: 15px 40px !important;
    }
}

.back-link {
    margin: 20px 0;
    font-size: 16px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.back-link a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: bold;
}

.back-link a:hover {
    text-decoration: underline;
}

.proposal-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
}

.lay-description {
    background-color: burlywood;
    border-width: 3px;
    border-style: solid;
    border-radius: 20px;
    padding: 20px;
    text-align: justify;
}

.grant-proposal {
    background-color: burlywood;
    border-width: 3px;
    border-style: solid;
    border-radius: 20px;
    padding: 20px;
}

.grant-proposal object {
    width: 100%;
    height: 600px;
    border: 1px solid #ddd;
}

/* Better PDF heights on mobile */
@media (max-width: 768px) {
    .grant-proposal object {
        height: 500px;
    }
    .project-notes object {
        height: 600px;
    }
}

.project-notes {
    background-color: burlywood;
    border-width: 3px;
    border-style: solid;
    border-radius: 20px;
    padding: 20px;
    margin: 30px 0 50px 0;
}

.project-notes object {
    width: 100%;
    height: 700px;
    margin-top: 20px;
    border: 1px solid #ddd;
}
