

/* Container Styles */
.form-container {
    background-color: #2a2a2a;
    color: #ffffff;
    width: 800px;
    height:600px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    box-shadow:0px 4px 40px rgba(0,0,0,0.8);
    overflow-y:auto;
    scrollbar-width:none;
}

@media screen and (max-width:768px){
    .form-container {
        width:100%;
      
        height:600px;
        overflow-y:auto;
    }
     
}
/* Profile Section */
.profile-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e91e63, #9c27b0);
    padding: 3px;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

/* Form Fields Section */
.form-field {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 8px;
    width:100%;

}

.form-input {
    width: 100%;
    padding: 12px;
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
}

.form-select {
    width: 100%;
    padding: 12px;
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 4px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
}

.form-select option {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Service Options Section */
.service-options {
    margin-bottom: 20px;
}

.option-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 15px;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.option-radio {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #666;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
}

.option-radio:checked {
    border-color: #fff;
}

.option-radio:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
}

.option-label {
    font-size: 14px;
    color: #cccccc;
    cursor: pointer;
}

/* Service Type Buttons Section */
.service-type-section {
    margin-bottom: 20px;
}

.service-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.service-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid #666;
    border-radius: 4px;
    background-color: transparent;
    color: #cccccc;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.service-btn.active {
    background-color: #ffd700;
    color: #000;
    border-color: #ffd700;
    font-weight: 600;
}

/* Location and Date Section */
.location-date-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

/* Charge Total Section */
.charge-section {
    margin-bottom: 20px;
}

.charge-total {
    background-color: #ffffff;
    color: #000;
    padding: 15px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

/* Additional Fields Section */
.additional-fields {
    margin-bottom: 20px;
}

.note-section {
    margin-bottom: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #666;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.checkbox:checked {
    background-color: #fff;
    border-color: #fff;
}

.checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 2px;
    color: #000;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-label {
    font-size: 14px;
    color: #cccccc;
    cursor: pointer;
}

/* Action Buttons Section */
.action-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #ffd700;
    color: #000;
}

.btn-reject {
    background-color: transparent;
    color: #ffd700;
    border: 1px solid #ffd700;
}

.btn:hover {
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .form-container {
        margin: 10px;
        padding: 15px;
    }

    .option-group {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-date-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-buttons {
        flex-direction: column;
    }

    .action-buttons {
        flex-direction: column;
    }
}