.logo-image {
    max-height: 40px; /* Adjust this value as needed */
    width: auto;
}

#logoContainer {
    cursor: pointer;
    transition: background-color 0.3s;
}

#logoContainer:hover {
    background-color: #f8f9fa;
}

.member-container.editing {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

:root {
    --purple-700: #6b21a8;
    --purple-800: #5b1b96;
    --slate-600: #4b5563;
    --slate-700: #374151;
    --slate-800: #1f2937;
}

body {
    color: var(--slate-800);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: var(--purple-700);
    border-radius: 6px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-purple {
    background-color: var(--purple-700);
    color: white;
    border: none;
}

.btn-purple:hover,
.btn-purple:focus {
    background-color: var(--purple-800);
    color: white;
}

.btn-outline-purple {
    color: var(--purple-700);
    border: 2px solid var(--purple-700);
    background-color: transparent;
}

.btn-outline-purple:hover,
.btn-outline-purple:focus {
    background-color: var(--purple-700);
    color: white;
}

.border-purple {
    border-color: var(--purple-700) !important;
}

.CodeMirror {
    height: 300px;
    resize: vertical;
}

/* Spacing adjustments */
main section:first-child {
    padding-top: 4rem;
    padding-bottom: 3rem;
}

main section:last-child {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

h1 {
    color: var(--slate-700);
    margin-bottom: 1.5rem;
}

.lead {
    color: var(--slate-600);
    margin-bottom: 2rem;
}

footer a:hover {
    color: var(--slate-800) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .input-group {
        flex-direction: column;
    }

    .input-group .form-control {
        border-radius: 0.375rem;
        margin-bottom: 0.5rem;
    }

    .input-group .btn {
        border-radius: 0.375rem;
        width: 100%;
    }
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    max-width: 400px;
    display: none;
}
.cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
}
.cookie-content p {
    margin: 0;
}

#coverLetterResult, #cvResult {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
}
#coverLetterResult h1, #cvResult h1 {
    font-size: 1.8em;
    margin-bottom: 1em;
}
#coverLetterResult h2, #cvResult h2 {
    font-size: 1.5em;
    margin: 1em 0;
}
#coverLetterResult p, #cvResult p {
    margin-bottom: 1em;
}
#coverLetterResult ul, #cvResult ul {
    margin-bottom: 1em;
    padding-left: 2em;
}
#coverLetterResult li, #cvResult li {
    margin-bottom: 0.5em;
}

/* Sticky Footer styles */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

.sticky-footer-main-content {
    flex-grow: 1;
}
