﻿:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --light-checkbox-bg: #f0f0f0;
    --light-checkbox-border: #ccc;
    --light-checkbox-hover-bg: #e0e0e0;
    --light-checkbox-hover-border: #bbb;
    --light-text-color-primary: #333;
    --light-text-color-secondary: #666;
    --light-checkmark-color: white;
    --card-bg-light: #ffffff;
    --card-border-light: #e0e0e0;
    --shadow-light-primary: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-light-secondary: 0 4px 16px rgba(0, 0, 0, 0.05);
    --button-primary-start: #1e3a8a;
    --button-primary-end: #3b82f6;
    --button-hover-start: #152c70;
    --link-color: #64748b;
    --link-hover-color: #3b82f6;
    --error-text-color: #dc2626;
    --error-bg-color: #fef2f2;
    --error-border-color: #fecaca;
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/*.checkbox-container {
    position: relative;
    z-index: 3;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--light-checkbox-bg);
    border: 1px solid var(--light-checkbox-border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    backdrop-filter: none;
    transition: all 0.3s ease;
}

    .checkbox-container:hover {
        background: var(--light-checkbox-hover-bg);
        border-color: var(--light-checkbox-hover-border);
        transform: translateY(-1px);
    }

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    flex: 1;
}

.custom-checkbox {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--light-checkbox-bg);
    border: 2px solid var(--light-checkbox-border);
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .custom-checkbox::before {
        content: '\f00c';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: var(--light-checkmark-color);
        font-size: 0.75rem;
        opacity: 0;
        transform: scale(0);
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

.form-check-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

    .form-check-input:checked + .custom-checkbox {*/
        /*  background: var(--secondary-gradient); */
        /*background: var(--primary-gradient);
        border-color: transparent;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    }

        .form-check-input:checked + .custom-checkbox::before {
            opacity: 1;
            transform: scale(1);
        }

.checkbox-label {
    color: var(--light-text-color-primary);
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    flex: 1;
}*/


body {
    margin-bottom: 60px;
}

.ratingStar:hover {
    background-color: yellow;
}

.form-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* max-width: 700px;*/
    margin: 0 auto;
}

fieldset {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 25px;
    background-color: #fdfdfd;
}

legend {
    font-weight: bold;
    color: #0056b3;
    padding: 0 10px;
    font-size: 1.1em;
}

.form-group {
    margin-bottom: 18px;
    /*display: flex;*/
    flex-wrap: wrap;
    align-items: center; /* Vertically align items */
}

    .form-group label {
        flex: 0 0 180px; /* Fixed width for labels */
        margin-right: 15px;
        text-align: right;
        font-weight: bold;
        color: #555;
    }
/*.btn-label {
    position: relative;
    left: -12px;*/ /* Adjusts the label position to overlap the button */
/*display: inline-block;
    padding: 8px 15px;*/ /* Slightly increased padding for better visual balance */
/*background: linear-gradient(to right, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.10));*/ /* Subtle gradient for depth */
/*border-radius: 4px 0 0 4px;*/ /* Slightly increased border-radius */
/*color: rgba(255, 255, 255, 0.9);*/ /* Added text color for better contrast */
/*font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);*/ /* Subtle text shadow */
/* box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2); /*         Adds a shadow for a lifted effect */
/*transition: all 0.3s ease;*/ /* Smooth transition for hover effects */
/*}

    .btn-label:hover {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15));*/ /* Darker gradient on hover */
/*}

.btn-labeled {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;*/ /* Ensure no extra padding on the left if the label is inside */
/*}

.btn {
    margin-bottom: 10px;*/
/* Consider adding basic button styles here if not already defined elsewhere */
/* For example: */
/* background-color: #007bff; */
/* color: white; */
/* border: none; */
/* padding: 10px 20px; */
/* border-radius: 4px; */
/* cursor: pointer; */
/*}*/
.btn-label {
    position: relative;
    left: -12px;
    display: inline-block;
    padding: 5px 12px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px 0 0 3px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
    transition: all 0.3s ease, transform 0.2s ease;
    user-select: none;
}

.btn-labeled {
    padding-top: 0;
    padding-bottom: 0;
}

    .btn-labeled:hover {
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        transform: translateY(-1px);
    }
/* Enhanced Button Label Styles */
/*.btn-label {
    position: relative;
    left: -12px;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.12) 50%, rgba(0, 0, 0, 0.08) 100%);
    border-radius: 6px 0 0 6px;*/
/*color: rgba(255, 255, 255, 0.95);*/
/*font-weight: 600;*/
/*    font-size: 0.9em;*/
/*letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
    overflow: hidden;
    z-index: 1;
}

    .btn-label::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;*/
/*height: 100%;*/
/*background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.6s ease;
    }

    .btn-label:hover {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.18) 50%, rgba(0, 0, 0, 0.12) 100%);
        transform: translateY(-1px);
        box-shadow: 3px 0 12px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
        color: rgba(255, 255, 255, 1);
    }

        .btn-label:hover::before {
            left: 100%;
        }

    .btn-label:active {
        transform: translateY(0);
        box-shadow: 1px 0 4px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }*/

/* Enhanced Button Styles */
/*.btn-labeled {
    position: relative;
    padding: 12px 20px 12px 8px;
    border: none;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

    .btn-labeled::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;*/
/* height: 100%;*/
/*background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .btn-labeled:hover {
        background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

        .btn-labeled:hover::before {
            opacity: 1;
        }

    .btn-labeled:active {
        transform: translateY(-1px);
        box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .btn-labeled:focus {
        outline: none;
        box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3), 0 0 0 3px rgba(0, 123, 255, 0.2);
    }*/

/* Button Container */
/*.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .btn:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }*/

/* Responsive Design */
/*@media (max-width: 768px) {
    .btn-label {
        padding: 8px 14px;*/
/**/ /*font-size: 0.85em;
        left: -8px;
    }

    .btn-labeled {
        padding: 10px 16px 10px 6px;
    }
}*/

/* Dark Theme Support */
/*@media (prefers-color-scheme: dark) {
    .btn-label {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.05) 100%);
        color: rgba(255, 255, 255, 0.9);
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

        .btn-label:hover {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.08) 100%);
        }
}*/

/* Animation Variants */
/*.btn-label.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    50% {
        box-shadow: 2px 0 12px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }

    100% {
        box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}*/

/* Success/Error State Variants */
/*.btn-labeled.success {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}

.btn-labeled.error {
    background: linear-gradient(135deg, #dc3545 0%, #a71e2a 100%);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.btn-labeled.warning {
    background: linear-gradient(135deg, #ffc107 0%, #d39e00 100%);
    color: #212529;
    box-shadow: 0 4px 8px rgba(255, 193, 7, 0.3);
}*/
