
.sidebar {
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    min-height: auto;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.sidebar .nav-link {
    color: #6c757d;
    padding: 12px 20px;
    margin: 2px 0;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.sidebar .nav-link:hover {
    background-color: #e3f2fd;
    color: var(--main_color);
    transform: translateX(5px);
}

.sidebar .nav-link.delete-btn:hover {
    background-color: var(--accent-color);
    color: #d32f2f;
}

.main-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 30px;
    min-height: calc(100vh - 40px);
}

.profile-header {
    background: linear-gradient(135deg, var(--main_color), var(--font_color));
    color: white;
    padding: 25px;
    margin-bottom: 30px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}
/* quotation */
.quotation{
    background: linear-gradient(135deg, var(--main_color) 0%, #16a085 100%);
    min-height: 100vh;
    color: var(--font_color);
    margin-top: 3rem;
}
.quote-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.step-indicator {
    background: var(--main_color);
    color: var(--hover_font);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* .form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    font-size: 16px;
} */

.form-control:focus, .form-select:focus {
    border-color: var(--main_color);
    box-shadow: 0 0 0 0.2rem rgba(28, 153, 94, 0.25);
}

.quot-service-card {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.quot-service-card:hover {
    border-color: var(--main_color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quot-service-card.selected {
    border-color: var(--main_color);
    background: var(--blur_color);
}

.file-upload-area {
    border: 2px dashed var(--main_color);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    background: var(--blur_color);
}

.file-upload-area.dragover {
    background: var(--blur_color);
    border-color: var(--main_color);
}

.quote-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 2rem;
}

.price-display {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--main_color);
}

/* .radio-card input[type="radio"] {
    display: none;
}
.radio-card input[type="checkbox"] {
    display: none;
} */

.radio-card label {
    display: block;
    border: 1px solid var(--blur_color);
    border-radius: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    background-color: #fff;
}

.radio-card label:hover {
    border-color: var(--main_color);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.05);
}

.radio-card input[type="radio"]:checked + label {
    border-color: var(--main_color);
    background-color: #f8f9ff;
    box-shadow: 0 0.5rem 1rem rgba(13,110,253,.15);
}
.radio-card input[type="checkbox"]:checked + label {
    border-color: var(--main_color);
    background-color: #f8f9ff;
    box-shadow: 0 0.5rem 1rem rgba(13,110,253,.15);
}


.radio-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.radio-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
}
