.candidate-layout {
    min-height: 100vh;
    background: #f1f5f9;
    display: flex;
    width: 100%;
}

.candidate-sidebar {
    width: 240px;
    min-width: 240px;
    max-width: 240px;
    background: white;
    border-right: 1px solid #e2e8f0;
    padding: 1.5rem;
}

.candidate-main {
    flex: 1;
    min-width: 0;
    padding: 2rem;
}

.candidate-mobile-menu {
    display: none;
}

.candidate-mobile-menu summary {
    cursor: pointer;
    list-style: none;
}

.candidate-mobile-menu summary::-webkit-details-marker {
    display: none;
}

@media (max-width: 1023px) {
    .candidate-layout {
        display: block;
    }

    .candidate-sidebar {
        display: none;
    }

    .candidate-main {
        width: 100%;
        padding: 1rem;
    }

    .candidate-mobile-menu {
        display: block;
        position: sticky;
        top: 88px;
        z-index: 40;
        margin-bottom: 1.5rem;
        border: 1px solid #e2e8f0;
        border-radius: 1rem;
        background: white;
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    }
}
