body {
    font-family: Georgia, sans-serif;
    margin: 0;
    display: flex;
    background-color: #A85E67;
    color: #333;
}

/* Sidebar Styling */
.sidebar {
    width: 260px;
    background-color: #5E7C89;
    color: black;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.sidebar h2 {
    font-size: 1.2rem;
    border-bottom: 1px solid #456;
    padding-bottom: 10px;
}

.sidebar ul { 
    list-style-type: none; 
    padding: 0; 
}

.sidebar li { 
    margin-bottom: 15px; 
}

.sidebar a {
    color: ;
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s;
}

.sidebar a:hover { 
    color: #3498db; 
}

/* Main Content Styling */
.main-content {
    flex-grow: 1;
    padding: 40px;
    box-sizing: border-box;
    height: 100vh;
    display: flex;              /* Added to handle dynamic height */
    flex-direction: column;     /* Added to stack contents vertically */
}

#home-content h1 { 
    color: white; 
}

/* Iframe Container Styling */
#iframe-container {
    flex-grow: 1;               /* Causes container to fill the remaining viewport height */
    width: 100%;
}

#iframe-container iframe {
    width: 100%;
    height: 100%;
    border: 2px dashed #ccc; 
    border-radius: 8px;
    background-color: #ffffff;
    box-sizing: border-box;
}

codecraft-web-project-footer {
    display: none !important;
}