:root {
    --primary:rgb(147, 20, 251);
    --secondary:rgb(87, 13, 133);
    --accent:rgb(10, 208, 243);
    --text: #1f2937;
    --light: #f3f4f6;
    --white: #ffffff;
    --icontext:rgb(94, 85, 99);
    --footerbg: #3e0663;
    --logo:#420aeb;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #dee2e6;
}

.default-project-section {
    margin-left: auto;
    text-align: right;
}

.project-display {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.project-label {
    font-size: 12px;
    color: #666;
}

.project-name {
    font-size: 16px;
    font-weight: bold;
    padding: 5px 10px;
    background-color: #e3f2fd;
    border-radius: 4px;
    margin: 2px 0;
}

.change-project-link {
    font-size: 12px;
    color: #0d6efd;
    text-decoration: none;
}

.change-project-link:hover {
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.modal-buttons {
    margin-top: 15px;
    text-align: right;
}

.modal-buttons button {
    margin-left: 10px;
    padding: 5px 15px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    background-color: #fff;
    cursor: pointer;
}

.modal-buttons button:first-child {
    background-color: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

.app-header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
}

.app-header-logo-icon {
    background: var(--logo);;
    color: var(--white) ;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.app-header-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    /* Remove the background color so it doesn't block the logo */
    background: transparent;
}

.header-logo-img {
    width: 65px;
    height:65px;
    object-fit: contain; /* This ensures the image maintains its aspect ratio */
    border-radius: 10px; /* If you want to keep the rounded corners */
}


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.project-selector {
    margin-left: auto;
}

.project-selector select {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 14px;
    min-width: 200px;
    background-color: white;
    cursor: pointer;
}

.project-selector select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.no-projects {
    color: #6c757d;
    font-size: 14px;
}