    /* Custom file upload styling */
    .custom-file-upload {
        cursor: pointer;
        background: #f8f9fa;
        transition: all 0.3s ease;
        padding: 4px;
        border: 2px dashed #b68c5a;;
        border-radius: 10px;
        text-align: center;
        font-size: 1.2rem;
    }

    .custom-file-upload:hover {
        background: #e9ecef;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .file-text {
        font-weight: 500;
        color: #495057;
        font-size: 14px;
    }

    .custom-file-upload i {
        transition: transform 0.3s ease;
        font-size: 30px;
        color: #b68c5a;
        margin-bottom: 10px;
    }

    .custom-file-upload:hover i {
        transform: scale(1.1);
        color: #c2a27c;
    }

    .file-selected {
        border-color: #28a745;
        background: #e7f1ff;
    }

    .file-selected i {
        color: #28a745;
    }

    /* Hide the default input */
    #file-upload {
        display: none;
    }

    /* Form validation styles */
    .invalid-feedback {
        display: none;
        color: #dc3545;
        font-size: 0.875em;
    }
    
    .was-validated .form-control:invalid ~ .invalid-feedback,
    .was-validated .form-control:invalid ~ .invalid-feedback {
        display: block;
    }
    
    .was-validated .form-control:invalid,
    .was-validated .form-control:invalid {
        border-color: #dc3545;
    }






            .alert {
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 0;
        }

        .alert-info {
            background-color: #e3f2fd;
            border: 1px solid #bbdefb;
            color: #1565c0;
        }

        .alert-warning {
            background-color: #fff8e1;
            border: 1px solid #ffecb3;
            color: #ff8f00;
        }

        .alert-danger {
            background-color: #ffebee;
            border: 1px solid #ffcdd2;
            color: #c62828;
        }

        .alert-success {
            background-color: #e8f5e9;
            border: 1px solid #a5d6a7;
            color: #2e7d32;
        }




    .social-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 5px 0 0 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    color: white;
}

.messenger {
    background: #0084FF;
}

.whatsapp {
    background: #25D366;
}

.viber {
    background: #7360F2;
}

.feedback-button {
    position: fixed;
    right: 0;
    top: 70%;
    transform: translateY(-50%);
    z-index: 999;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 5px 0 0 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.feedback-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: #b3905dfa;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 40px;
    height: 100px;
    text-decoration: none;
}

.feedback-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
    transform: rotate(-90deg);
    white-space: nowrap;
}

.feedback-icon:hover {
    transform: scale(1.1);
    color: white;
}

@media (max-width: 768px) {
    .social-sidebar {
        bottom: 20px;
        top: auto;
        right: 20px;
        flex-direction: row;
        transform: none;
        border-radius: 5px;
    }

    .social-icon {
        transform: none !important;
    }

    .feedback-button {
        bottom: 80px;
        top: auto;
        right: 20px;
        transform: none;
        border-radius: 5px;
    }

    .feedback-icon {
        transform: none !important;
        width: 80px;
        height: 40px;
    }

    .feedback-text {
        transform: none;
        font-size: 12px;
    }
}