.dynamic-field-group .businessgrow-field:last-child {
    margin-bottom: 0;
}
/**
 * Frontend styles for Business Growth Plugin
 */

.businessgrow-form-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 40px;
    padding: 32px 24px;
    background: transparent;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.businessgrow-form {
    width: 100%;
}

.businessgrow-form-title {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 6px;
    font-size: 28px;
    font-weight: 600;
}

.businessgrow-form-description {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.businessgrow-section {
    padding: 16px 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.businessgrow-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.businessgrow-section-title {
    color: #111827;
    margin-bottom: 12px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.businessgrow-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px 24px;
    margin-bottom: 0;
}

.businessgrow-field {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.businessgrow-field:last-child {
    margin-bottom: 0;
}

.businessgrow-field label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #111827;
    font-size: 14px;
}

.businessgrow-field .description {
    margin-top: 6px;
    font-size: 12px;
    color: #6b7280;
}

.businessgrow-field .required {
    color: #e74c3c;
    font-weight: bold;
}

.businessgrow-field input,
.businessgrow-field select,
.businessgrow-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s ease, background 0.2s ease;
    background: #fff;
    box-sizing: border-box;
}

.businessgrow-field input:focus,
.businessgrow-field select:focus,
.businessgrow-field textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: none;
}

.businessgrow-field textarea {
    resize: vertical;
    min-height: 100px;
}

.businessgrow-field input[type="file"] {
    padding: 8px;
    border: 1px dashed #d1d5db;
    background: #f9fafb;
    cursor: pointer;
}

.businessgrow-field input[type="file"]:hover {
    border-color: #2563eb;
    background: #eef2ff;
}

.businessgrow-field input[type="file"]::-webkit-file-upload-button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
    transition: background 0.2s ease;
}

.businessgrow-field input[type="file"]::-webkit-file-upload-button:hover {
    background: #1d4ed8;
}

.businessgrow-field input[type="file"]::file-selector-button {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
    transition: background 0.2s ease;
}

.businessgrow-field input[type="file"]::file-selector-button:hover {
    background: #1d4ed8;
}

.file-upload-preview {
    margin-top: 10px;
    padding: 10px;
    background: #f4f6f8;
    border-radius: 6px;
    border: 1px solid #dfe6ee;
    display: none;
    align-items: center;
    gap: 12px;
}

.file-upload-preview img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #e1e8ed;
}

.file-upload-preview .file-info {
    font-size: 12px;
    color: #2c3e50;
    word-break: break-all;
}

.file-upload-preview .file-placeholder {
    width: 60px;
    height: 60px;
    border: 1px dashed #cfd8dc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #90a4ae;
    background: #fff;
}

.file-upload-preview .file-info {
    font-size: 12px;
    color: #2c3e50;
    word-break: break-all;
}

.file-upload-preview.is-visible {
    display: flex;
}
.dynamic-field-group {
    margin-bottom: 16px;
    padding: 18px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    position: relative;
}

.dynamic-field-group:last-child {
    margin-bottom: 0;
}

.dynamic-field-group .businessgrow-row {
    gap: 12px 18px;
    margin-bottom: 0;
}

.dynamic-field-group .businessgrow-field {
    margin-bottom: 12px;
}

.dynamic-field-group .remove-field {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.dynamic-field-group .remove-field:hover {
    background: #eef2ff;
    border-color: #2563eb;
    color: #1d4ed8;
}

.add-education-field,
.add-experience-field,
.add-service-field,
.add-area-field {
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.add-education-field:hover,
.add-experience-field:hover,
.add-service-field:hover,
.add-area-field:hover {
    background: #229954;
}

.businessgrow-form-actions {
    text-align: left;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.businessgrow-submit-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 15px;
    transition: background 0.2s ease, transform 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.businessgrow-submit-btn:hover:not(:disabled) {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.businessgrow-submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.businessgrow-reset-btn {
    background: #f3f4f6;
    color: #111827;
    border: 1px solid #d1d5db;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
}

.businessgrow-reset-btn:hover {
    background: #e5e7eb;
    border-color: #cbd5f5;
}

.businessgrow-form-messages {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 6px;
    display: none;
}

.businessgrow-form-messages.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.businessgrow-form-messages.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.businessgrow-form-messages.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.businessgrow-loading {
    display: none;
    text-align: center;
    margin: 20px 0;
}

.businessgrow-loading .spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Dynamic Taxonomy Fields */
.other-field {
    margin-top: 10px;
    padding: 10px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.other-field input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.other-field input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}

.other-field input::placeholder {
    color: #6c757d;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .businessgrow-form-container {
        margin: 10px;
        padding: 24px 18px;
    }
    
    .businessgrow-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .businessgrow-section {
        padding: 0 0 24px;
    }
    
    .businessgrow-form-title {
        font-size: 24px;
    }
    
    .businessgrow-submit-btn,
    .businessgrow-reset-btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .businessgrow-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .notification-content {
        padding: 15px;
    }
    
    .notification-title {
        font-size: 15px;
    }
    
    .notification-message {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .businessgrow-form-container {
        margin: 5px;
        padding: 20px 14px;
    }
    
    .businessgrow-section {
        padding: 0 0 20px;
    }
    
    .businessgrow-form-title {
        font-size: 20px;
    }
    
    .businessgrow-section-title {
        font-size: 18px;
    }
}

/* Form Validation Styles */
.businessgrow-field input.error,
.businessgrow-field select.error,
.businessgrow-field textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.businessgrow-field .error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Notifications */
.businessgrow-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-left: 4px solid #27ae60;
}

.businessgrow-notification.notification-error {
    border-left-color: #e74c3c;
}

.businessgrow-notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    gap: 15px;
}

.notification-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #27ae60;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.notification-error .notification-icon {
    background: #e74c3c;
}

.notification-text {
    flex: 1;
}

.notification-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 16px;
}

.notification-message {
    color: #7f8c8d;
    font-size: 14px;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: #95a5a6;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: #ecf0f1;
    color: #2c3e50;
}

/* Custom Select Styling */
.businessgrow-field select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Custom Checkbox and Radio Styling */
.businessgrow-field input[type="checkbox"],
.businessgrow-field input[type="radio"] {
    width: auto;
    margin-right: 8px;
}

/* Date Input Styling */
.businessgrow-field input[type="date"] {
    position: relative;
}

.businessgrow-field input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Number Input Styling */
.businessgrow-field input[type="number"]::-webkit-outer-spin-button,
.businessgrow-field input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.businessgrow-field input[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

/* File Upload Styling */
.businessgrow-field input[type="file"]::-webkit-file-upload-button {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
}

.businessgrow-field input[type="file"]::-webkit-file-upload-button:hover {
    background: #2980b9;
}

/* Business Listings Styles */
.businessgrow-listings-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.businessgrow-filters-section {
    background: #f9fafb;
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 35px;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.businessgrow-filters-section h3 {
    margin: 0 0 24px 0;
    font-size: 22px;
    font-weight: 700;
    color: #1f2a37;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.filters-form {
    width: 100%;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-group:last-child {
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 12px;
    padding-top: 8px;
}

.filter-group label {
    font-weight: 600;
    color: #1f2a37;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-group select,
.filter-group input {
    padding: 12px 16px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 12px;
    background: #fff;
    font-size: 15px;
    font-weight: 500;
    color: #0f172a;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: #1d4ed8;
    box-shadow: 0 15px 25px rgba(29, 78, 216, 0.18);
}

.filter-group::after {
    display: none;
}

.filter-group .btn {
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease, color 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #111b2b;
    color: #fff;
}

.btn-primary:hover {
    background: #0c1420;
}

.btn-secondary {
    background: #e5e7eb;
    color: #1f2937;
}

.btn-secondary:hover {
    background: #d1d5db;
}

.businessgrow-listings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-bottom: 2px solid #e1e8ed;
}

.businessgrow-listings-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
}

.listings-info {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 500;
}

.businessgrow-listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.business-card {
    background: #fff;
    border-radius: 12px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    border: 1px solid #e1e8ed;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.business-card-header {
    padding: 25px 25px 20px;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    gap: 15px;
}

.business-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.business-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.business-info {
    flex: 1;
}

.business-name {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
}

.business-type,
.business-category {
    margin: 0 0 4px 0;
    font-size: 13px;
    color: #7f8c8d;
    font-weight: 500;
}

.business-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
    margin-top: 6px;
}

.business-pill {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 12px;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 12px;
    font-weight: 600;
    min-height: 38px;
}

.pill-label {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 11px;
    color: #64748b;
}

.pill-value {
    color: #0f172a;
}

.business-card-body {
    padding: 0 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.business-description {
    margin: 0 0 20px 0;
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.5;
}

.business-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.detail-label {
    font-weight: 600;
    color: #7f8c8d;
    min-width: 80px;
}

.detail-value {
    color: #2c3e50;
    text-align: right;
    flex: 1;
    word-break: break-word;
}

.business-card-footer {
    padding: 20px 25px 25px;
    display: flex;
    gap: 10px;
    border-top: 1px solid #f1f3f4;
    margin-top: auto;
}

.business-card-footer .btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.no-listings {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #7f8c8d;
}

.no-listings-icon {
    margin-bottom: 20px;
}

.no-listings-icon .dashicons {
    font-size: 48px;
    color: #bdc3c7;
}

.no-listings h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 600;
    color: #95a5a6;
}

.no-listings p {
    margin: 0;
    font-size: 14px;
    color: #bdc3c7;
}

.businessgrow-pagination {
    text-align: center;
    margin-top: 30px;
}

.businessgrow-login-required {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e8ed;
}

.businessgrow-login-required p {
    margin: 0;
    font-size: 16px;
    color: #7f8c8d;
}

/* Contact Modal Styles */
#contact-modal .businessgrow-modal-content {
    max-width: 500px;
}

#contact-form .form-group {
    margin-bottom: 20px;
}

#contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    color: #2c3e50;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Responsive Design for Listings */
@media (max-width: 768px) {
    .businessgrow-listings-container {
        padding: 15px;
    }

    .businessgrow-filters-section {
        padding: 22px;
        border-radius: 14px;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .filter-group {
        padding: 16px 18px;
    }

    .filter-group:last-child {
        flex-direction: column;
        width: 100%;
    }
    
    .businessgrow-listings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .businessgrow-listings-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .business-card-header {
        padding: 20px;
    }
    
    .business-card-body {
        padding: 0 20px 15px;
    }
    
    .business-card-footer {
        padding: 15px 20px 20px;
        flex-direction: column;
    }
    
    .business-card-footer .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .businessgrow-listings-container {
        padding: 10px;
    }

    .businessgrow-filters-section {
        padding: 18px;
    }

    .filter-group {
        padding: 0;
    }

    .filter-group select,
    .filter-group input {
        font-size: 14px;
    }
    
    .business-card-header {
        padding: 15px;
    }
    
    .business-card-body {
        padding: 0 15px 15px;
    }
    
    .business-card-footer {
        padding: 15px;
    }
    
    .business-logo,
    .business-logo-placeholder {
        width: 50px;
        height: 50px;
    }
    
    .business-name {
        font-size: 16px;
    }
}

/* Error Message Styles */
.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    display: block;
    font-weight: 500;
}

.businessgrow-field input.error,
.businessgrow-field select.error,
.businessgrow-field textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.businessgrow-message {
    padding: 12px 16px;
    border-radius: 4px;
    margin: 15px 0;
    font-size: 14px;
    font-weight: 500;
}

.businessgrow-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.businessgrow-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.businessgrow-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Loading Spinner */
.btn-spinner {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
