/* Beauty Salon Booking System - Frontend Styles */

/* Persian Date Picker Custom Styles */
.datepicker-plot-area {
    font-family: 'Tahoma', 'Arial', sans-serif !important;
    direction: rtl !important;
}

.datepicker-plot-area .datepicker-day-view .table-days td {
    font-size: 14px !important;
}

.datepicker-plot-area .datepicker-day-view .table-days td span {
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    width: 35px !important;
    height: 35px !important;
    line-height: 35px !important;
    text-align: center !important;
}

.datepicker-plot-area .datepicker-day-view .table-days td span:hover {
    background-color: #ff6b9d !important;
    color: white !important;
    transform: scale(1.1) !important;
}

.datepicker-plot-area .datepicker-day-view .table-days td span.selected {
    background-color: #ff6b9d !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3) !important;
}

.datepicker-plot-area .datepicker-day-view .table-days td span.today {
    background-color: #f0f0f0 !important;
    color: #333 !important;
    font-weight: bold !important;
    border: 2px solid #ff6b9d !important;
}

.datepicker-plot-area .toolbox {
    background-color: #f8f9fa !important;
    border-bottom: 1px solid #dee2e6 !important;
    padding: 10px !important;
}

.datepicker-plot-area .toolbox .btn {
    background-color: #ff6b9d !important;
    border-color: #ff6b9d !important;
    color: white !important;
    border-radius: 6px !important;
    padding: 6px 12px !important;
    font-size: 12px !important;
    margin: 0 5px !important;
    transition: all 0.3s ease !important;
}

.datepicker-plot-area .toolbox .btn:hover {
    background-color: #e55a8a !important;
    border-color: #e55a8a !important;
    transform: translateY(-1px) !important;
}

.datepicker-plot-area .datepicker-day-view .table-days th {
    background-color: #f8f9fa !important;
    color: #666 !important;
    font-weight: 600 !important;
    padding: 10px 5px !important;
}

.datepicker-plot-area .datepicker-day-view .table-days td {
    padding: 2px !important;
}

/* RTL Support for Persian Date Picker */
.datepicker-plot-area {
    text-align: right !important;
}

.datepicker-plot-area .datepicker-day-view .table-days th,
.datepicker-plot-area .datepicker-day-view .table-days td {
    text-align: center !important;
}

.bsb-booking-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.bsb-form-container {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.bsb-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b9d, #ff8fab, #ff6b9d);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.bsb-form-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 2.2em;
    font-weight: 300;
}

.bsb-form-step h3 {
    color: #333;
    margin-bottom: 30px;
    font-size: 1.8em;
    font-weight: 600;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.bsb-form-step h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b9d, #ff8fab);
    border-radius: 2px;
}

.bsb-form-step {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Grid */
.bsb-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.bsb-service-card {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.bsb-service-card:hover {
    border-color: #ff6b9d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
}

.bsb-service-card.selected {
    border-color: #ff6b9d;
    background: linear-gradient(135deg, #fff5f8 0%, #fff 100%);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.service-header h4 {
    margin: 0;
    color: #333;
    font-size: 1.3em;
    font-weight: 600;
}

.service-price {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1em;
}

.service-details p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.service-duration,
.service-category {
    display: inline-block;
    background: #f8f9fa;
    color: #666;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9em;
    margin-right: 10px;
    margin-bottom: 10px;
}

.bsb-select-service {
    width: 100%;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.bsb-select-service:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

/* Stylists Grid */
.bsb-stylists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.bsb-stylist-card {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bsb-stylist-card:hover {
    border-color: #ff6b9d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.15);
}

.bsb-stylist-card.selected {
    border-color: #ff6b9d;
    background: linear-gradient(135deg, #fff5f8 0%, #fff 100%);
}

.stylist-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f0f0f0;
}

.stylist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stylist-info h4 {
    margin: 0 0 10px;
    color: #333;
    font-size: 1.3em;
}

.stylist-info p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.stylist-details {
    margin-bottom: 20px;
}

.stylist-experience,
.stylist-specialties {
    display: block;
    background: #f8f9fa;
    color: #666;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9em;
    margin: 5px 0;
}

.bsb-select-stylist {
    width: 100%;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bsb-select-stylist:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

/* Date and Time Selection */
.bsb-date-time-selection {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 30px;
}

.bsb-date-picker {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.bsb-date-picker label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.bsb-date-picker input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
    cursor: pointer;
    background: white;
}

.bsb-date-picker input[type="text"]:focus {
    border-color: #ff6b9d;
    outline: none;
}

/* Persian Date Picker Styles */
.ui-datepicker {
    font-family: 'Tahoma', 'Arial', sans-serif;
    direction: rtl;
    text-align: right;
    background: white;
    border: 2px solid #ff6b9d;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 10px;
    z-index: 9999;
}

.ui-datepicker-header {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.ui-datepicker-title {
    font-weight: bold;
    font-size: 14px;
}

.ui-datepicker-prev, .ui-datepicker-next {
    cursor: pointer;
    padding: 5px;
    border-radius: 3px;
    transition: background-color 0.3s;
}

.ui-datepicker-prev:hover, .ui-datepicker-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ui-datepicker-calendar {
    width: 100%;
    border-collapse: collapse;
}

.ui-datepicker-calendar th {
    background: #f8f9fa;
    padding: 8px;
    text-align: center;
    font-weight: bold;
    color: #333;
    border: 1px solid #e8e8e8;
}

.ui-datepicker-calendar td {
    padding: 5px;
    text-align: center;
    border: 1px solid #e8e8e8;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ui-datepicker-calendar td:hover {
    background: #fff5f8;
}

.ui-datepicker-calendar .ui-state-active {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    border-radius: 3px;
}

.ui-datepicker-calendar .ui-state-disabled {
    color: #ccc;
    cursor: not-allowed;
}

.ui-datepicker-calendar .ui-state-disabled:hover {
    background: transparent;
}

.bsb-time-slots {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.bsb-time-slots h4 {
    margin-bottom: 15px;
    color: #333;
}

.bsb-time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.bsb-time-slot {
    background: white;
    border: 2px solid #e8e8e8;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
    font-weight: 500;
}

.bsb-time-slot:hover {
    border-color: #ff6b9d;
    background: #fff5f8;
}

.bsb-time-slot.selected {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    border-color: #ff6b9d;
}

.bsb-time-slot.disabled {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
    border-color: #e0e0e0;
}

/* Customer Information Form */
.bsb-customer-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.bsb-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.bsb-form-group {
    display: flex;
    flex-direction: column;
}

.bsb-form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.bsb-form-group input,
.bsb-form-group textarea {
    padding: 15px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    width: 100%;
    box-sizing: border-box;
}

.bsb-form-group input:focus,
.bsb-form-group textarea:focus {
    border-color: #ff6b9d;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
    background: white;
    transform: translateY(-1px);
}

.bsb-form-group input:focus,
.bsb-form-group textarea:focus {
    border-color: #ff6b9d;
    outline: none;
}

.bsb-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Booking Summary */
.bsb-booking-summary {
    background: linear-gradient(135deg, #fff5f8 0%, #fff 100%);
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #ff6b9d;
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 600;
    font-size: 1.1em;
    color: #ff6b9d;
}

.summary-item strong {
    color: #333;
}

/* Form Navigation */
.bsb-form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.bsb-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    min-height: 50px;
}

.bsb-btn i {
    font-size: 18px;
    margin: 0;
}

.bsb-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.bsb-btn:hover::before {
    left: 100%;
}

.bsb-btn-primary {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
}

.bsb-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.bsb-btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e8e8e8;
}

.bsb-btn-secondary:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.bsb-btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.bsb-btn-success:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Loading and Messages */
.bsb-loading {
    text-align: center;
    padding: 40px;
}

.bsb-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6b9d;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.bsb-loading {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.2);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.bsb-message {
    padding: 20px 25px;
    border-radius: 12px;
    margin: 25px 0;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    border-left: 4px solid;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bsb-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.bsb-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.bsb-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.bsb-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bsb-booking-form {
        padding: 10px;
    }
    
    .bsb-form-container {
        padding: 0px;
    }
    
    .bsb-services-grid {
        grid-template-columns: 1fr;
    }
    
    .bsb-stylists-grid {
        grid-template-columns: 1fr;
    }
    
    .bsb-date-time-selection {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .bsb-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .bsb-form-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .bsb-btn {
        width: 100%;
        text-align: center;
    }
}

/* Stylists List Page */
.bsb-stylists-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.bsb-stylists-list h2 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-size: 2.2em;
    font-weight: 300;
}

.bsb-stylists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.bsb-stylist-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.bsb-stylist-item:hover {
    transform: translateY(-5px);
}

.stylist-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.stylist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stylist-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3em;
}

.stylist-info {
    padding: 25px;
}

.stylist-info h3 {
    margin: 0 0 15px;
    color: #333;
    font-size: 1.5em;
}

.stylist-bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.stylist-services h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.stylist-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stylist-services li {
    background: #f8f9fa;
    color: #666;
    padding: 5px 12px;
    border-radius: 15px;
    margin-bottom: 5px;
    display: inline-block;
    margin-right: 8px;
    font-size: 0.9em;
}

.stylist-contact {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.stylist-contact p {
    margin: 5px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stylist-working-hours {
    margin: 20px 0;
}

.stylist-working-hours h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.stylist-working-hours p {
    margin: 5px 0;
    color: #666;
    font-size: 0.9em;
}

.bsb-book-with-stylist {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.bsb-book-with-stylist:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    color: white;
}

/* Services List Page */
.bsb-services-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.bsb-services-list h2 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-size: 2.2em;
    font-weight: 300;
}

.bsb-service-category {
    margin-bottom: 50px;
}

.bsb-service-category h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 1.8em;
    border-bottom: 2px solid #ff6b9d;
    padding-bottom: 10px;
}

.bsb-service-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.bsb-service-item:hover {
    transform: translateY(-2px);
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin: 15px 0;
}

.service-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.service-duration {
    background: #f8f9fa;
    color: #666;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-stylists {
    margin: 15px 0;
}

.service-stylists h5 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1em;
}

.service-stylists ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-stylists li {
    background: #f8f9fa;
    color: #666;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 5px;
    display: inline-block;
    margin-right: 8px;
    font-size: 0.9em;
}

.bsb-book-service {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.bsb-book-service:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
    color: white;
}

.bsb-booking-cta {
    text-align: center;
    background: linear-gradient(135deg, #fff5f8 0%, #fff 100%);
    padding: 40px;
    border-radius: 15px;
    margin-top: 50px;
    border: 2px solid #ff6b9d;
}

.bsb-booking-cta h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.bsb-booking-cta p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1em;
    line-height: 1.6;
}

.bsb-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.bsb-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.3);
    color: white;
}

/* Phone Verification - Enhanced Styles */
.bsb-phone-verification {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, #fff5f8 0%, #fff 100%);
    border-radius: 15px;
    border: 2px solid #ff6b9d;
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.15);
    text-align: center;
}

.bsb-verification-info {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.bsb-verification-info p {
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.bsb-verification-info strong {
    color: #fff;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 8px;
}

.bsb-verification-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.bsb-verification-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.bsb-verification-form input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 3px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.bsb-verification-form input:focus {
    border-color: #ff6b9d;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 157, 0.1);
    background: white;
}

.bsb-verification-form small {
    display: block;
    margin-top: 8px;
    color: #666;
    font-size: 14px;
}

.bsb-verification-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    flex-wrap: wrap;
}

.bsb-verification-actions .bsb-btn {
    flex: 1;
    max-width: 180px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
}

.bsb-verification-actions .bsb-btn-primary {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.bsb-verification-actions .bsb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
}

.bsb-verification-actions .bsb-btn-secondary {
    background: white;
    color: #666;
    border: 2px solid #e8e8e8;
}

.bsb-verification-actions .bsb-btn-secondary:hover {
    background: #f8f9fa;
    border-color: #ff6b9d;
    color: #ff6b9d;
}

/* Verification Code Input Styling */
#verification-code {
    font-family: 'Courier New', monospace;
    font-size: 24px !important;
    font-weight: 700 !important;
    letter-spacing: 8px !important;
    text-align: center !important;
    padding: 20px !important;
    border: 3px solid #e8e8e8 !important;
    border-radius: 15px !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%) !important;
    transition: all 0.3s ease !important;
}

#verification-code:focus {
    border-color: #ff6b9d !important;
    box-shadow: 0 0 0 4px rgba(255, 107, 157, 0.15) !important;
    background: white !important;
    transform: scale(1.02) !important;
}

#verification-code::placeholder {
    letter-spacing: 4px !important;
    color: #ccc !important;
}

/* Success Animation */
.verification-success {
    animation: successPulse 0.6s ease-in-out;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Loading Animation for Verification */
.verification-loading {
    position: relative;
    overflow: hidden;
}

.verification-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loadingShimmer 1.5s infinite;
}

@keyframes loadingShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.bsb-verification-info {
    text-align: center;
    margin-bottom: 30px;
}

.bsb-verification-info p {
    font-size: 16px;
    color: #333;
    margin: 0;
}

.bsb-verification-info strong {
    color: #0073aa;
}

.bsb-verification-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.bsb-verification-actions .bsb-btn {
    flex: 1;
    max-width: 150px;
}

#verification-code {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
}

#verification-code::placeholder {
    letter-spacing: 1px;
}

.bsb-form-actions {
    margin-top: 20px;
    text-align: center;
}

#bsb-continue-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

#bsb-continue-btn:hover {
    background-color: #45a049;
} 