/* ECCNA Manager Public Styles */

/* Merchandise Container */
.eccna-merchandise-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.eccna-merchandise-header {
    text-align: center;
    margin-bottom: 40px;
}

.eccna-merchandise-header h2 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 10px;
}

.eccna-merchandise-header p {
    color: #7f8c8d;
    font-size: 1.1em;
    max-width: 600px;
    margin: 0 auto;
}

/* Merchandise Grid */
.eccna-merchandise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.eccna-merchandise-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eccna-merchandise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.eccna-merchandise-image {
    height: 200px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eccna-merchandise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eccna-merchandise-placeholder {
    color: #adb5bd;
    font-size: 1.1em;
}

.eccna-merchandise-details {
    padding: 20px;
}

.eccna-merchandise-name {
    font-size: 1.4em;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.eccna-merchandise-description {
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.5;
}

.eccna-merchandise-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price-amount {
    font-size: 1.5em;
    font-weight: 700;
    color: #e74c3c;
}

.price-category {
    background: #3498db;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    text-transform: uppercase;
}

.eccna-merchandise-stock {
    margin-bottom: 15px;
}

.stock-available {
    color: #27ae60;
    font-weight: 500;
}

.stock-unavailable {
    color: #e74c3c;
    font-weight: 500;
}

/* Options */
.eccna-merchandise-options {
    margin-bottom: 20px;
}

.eccna-option-group {
    margin-bottom: 15px;
}

.eccna-option-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #2c3e50;
}

.eccna-size-select,
.eccna-color-select,
.eccna-quantity-input {
    width: 100%;
    padding: 8px 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.eccna-size-select:focus,
.eccna-color-select:focus,
.eccna-quantity-input:focus {
    outline: none;
    border-color: #3498db;
}

/* Buttons */
.eccna-add-to-cart-btn {
    width: 100%;
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.eccna-add-to-cart-btn:hover {
    background: #2980b9;
}

.eccna-add-to-cart-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}

/* Shopping Cart */
.eccna-shopping-cart {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid #e9ecef;
}

.eccna-shopping-cart h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.eccna-cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
}

.eccna-cart-item:last-child {
    border-bottom: none;
}

.eccna-cart-item-details {
    flex: 1;
}

.eccna-cart-item-name {
    font-weight: 600;
    color: #2c3e50;
}

.eccna-cart-item-options {
    color: #6c757d;
    font-size: 0.9em;
}

.eccna-cart-item-price {
    font-weight: 600;
    color: #e74c3c;
    margin-left: 20px;
}

.eccna-cart-item-remove {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.eccna-cart-total {
    text-align: right;
    margin: 20px 0;
    font-size: 1.2em;
}

.eccna-checkout-btn,
.eccna-clear-cart-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.eccna-checkout-btn {
    background: #27ae60;
    color: white;
}

.eccna-checkout-btn:hover {
    background: #229954;
}

.eccna-clear-cart-btn {
    background: #e74c3c;
    color: white;
}

.eccna-clear-cart-btn:hover {
    background: #c0392b;
}

/* Checkout Form */
.eccna-checkout-form {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.eccna-checkout-form h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 1.8em;
}

.eccna-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.eccna-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.eccna-form-group input,
.eccna-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.eccna-form-group input:focus,
.eccna-form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.eccna-order-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.eccna-order-summary h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.eccna-order-total {
    text-align: right;
    margin-top: 15px;
    font-size: 1.2em;
}

.eccna-form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.eccna-back-to-cart-btn,
.eccna-submit-order-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.eccna-back-to-cart-btn {
    background: #6c757d;
    color: white;
}

.eccna-back-to-cart-btn:hover {
    background: #5a6268;
}

.eccna-submit-order-btn {
    background: #27ae60;
    color: white;
}

.eccna-submit-order-btn:hover {
    background: #229954;
}

/* Success Message */
.eccna-success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.eccna-success-message h3 {
    color: #155724;
    margin-bottom: 15px;
}

.eccna-success-message p {
    color: #155724;
    margin-bottom: 20px;
}

.eccna-new-order-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
}

.eccna-new-order-btn:hover {
    background: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .eccna-merchandise-grid {
        grid-template-columns: 1fr;
    }
    
    .eccna-form-row {
        grid-template-columns: 1fr;
    }
    
    .eccna-form-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .eccna-cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .eccna-cart-item-price {
        margin-left: 0;
    }
}



/* Speaker Form Styles */
.eccna-speaker-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.eccna-speaker-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.eccna-speaker-form-header h2 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.eccna-speaker-form-header p {
    color: #7f8c8d;
    font-size: 1.1em;
    margin-bottom: 30px;
}

.eccna-speaker-requirements {
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin-bottom: 30px;
}

.eccna-speaker-requirements h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.eccna-speaker-requirements ul {
    margin: 0;
    padding-left: 20px;
}

.eccna-speaker-requirements li {
    color: #34495e;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Form Sections */
.eccna-form-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.eccna-section-title {
    color: #2c3e50;
    font-size: 1.5em;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

/* Clean Time Display */
.eccna-clean-time-display {
    background: #e8f5e8;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    text-align: center;
}

.eccna-clean-time-label {
    font-weight: 600;
    color: #155724;
    margin-right: 10px;
}

.eccna-clean-time-value {
    font-size: 1.1em;
    font-weight: 700;
    color: #155724;
}

/* Field Help Text */
.eccna-field-help {
    display: block;
    color: #6c757d;
    font-size: 0.9em;
    margin-top: 5px;
    font-style: italic;
}

/* Checkbox Groups */
.eccna-checkbox-group {
    margin-bottom: 15px;
}

.eccna-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    line-height: 1.5;
}

.eccna-checkbox-label input[type="checkbox"] {
    margin-right: 12px;
    margin-top: 2px;
    transform: scale(1.2);
}

.eccna-checkbox-text {
    color: #2c3e50;
    font-size: 1em;
}

/* Form Actions */
.eccna-form-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.eccna-submit-application-btn,
.eccna-reset-form-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.eccna-submit-application-btn {
    background: #27ae60;
    color: white;
}

.eccna-submit-application-btn:hover {
    background: #229954;
    transform: translateY(-2px);
}

.eccna-submit-application-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.eccna-reset-form-btn {
    background: #6c757d;
    color: white;
}

.eccna-reset-form-btn:hover {
    background: #5a6268;
}

/* Form Messages */
.eccna-form-messages {
    margin-top: 30px;
}

.eccna-success-message,
.eccna-error-message {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.eccna-success-message h4 {
    color: #155724;
    margin-bottom: 10px;
}

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

.eccna-error-message h4 {
    color: #721c24;
    margin-bottom: 10px;
}

/* Speaker Info Section */
.eccna-speaker-info {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
}

.eccna-speaker-info h3 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8em;
}

.eccna-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.eccna-info-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.eccna-info-item h4 {
    color: #3498db;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.eccna-info-item p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Form Validation Styles */
.eccna-form-group input:invalid,
.eccna-form-group textarea:invalid {
    border-color: #e74c3c;
}

.eccna-form-group input:valid,
.eccna-form-group textarea:valid {
    border-color: #27ae60;
}

/* Loading State */
.eccna-submit-application-btn.loading {
    position: relative;
    color: transparent;
}

.eccna-submit-application-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Responsive Design for Speaker Form */
@media (max-width: 768px) {
    .eccna-speaker-form-container {
        padding: 15px;
    }
    
    .eccna-form-section {
        padding: 20px;
    }
    
    .eccna-form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .eccna-submit-application-btn,
    .eccna-reset-form-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .eccna-info-grid {
        grid-template-columns: 1fr;
    }
}


/* Event Display Styles */
.eccna-event-display {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.eccna-event-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    border-radius: 12px;
}

.eccna-event-title {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: 700;
}

.eccna-event-theme {
    font-size: 1.3em;
    font-style: italic;
    opacity: 0.9;
}

.eccna-event-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.eccna-event-info-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.eccna-event-info-item.eccna-full-width {
    grid-column: 1 / -1;
}

.eccna-event-info-item h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.4em;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.eccna-info-row {
    display: flex;
    margin-bottom: 10px;
}

.eccna-info-label {
    font-weight: 600;
    color: #34495e;
    min-width: 120px;
}

.eccna-info-value {
    color: #2c3e50;
}

.eccna-event-actions {
    text-align: center;
    margin-top: 40px;
}

.eccna-action-button {
    display: inline-block;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.eccna-action-button.eccna-primary {
    background: #27ae60;
    color: white;
}

.eccna-action-button.eccna-primary:hover {
    background: #229954;
    transform: translateY(-2px);
}

.eccna-action-button.eccna-secondary {
    background: #3498db;
    color: white;
}

.eccna-action-button.eccna-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Activities Display Styles */
.eccna-activities-display {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.eccna-activities-header {
    text-align: center;
    margin-bottom: 40px;
}

.eccna-activities-header h2 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 15px;
}

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

.eccna-activity-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.eccna-activity-item:hover {
    transform: translateY(-5px);
}

.eccna-activity-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.eccna-activity-name {
    color: #2c3e50;
    font-size: 1.3em;
    margin: 0;
    flex: 1;
}

.eccna-activity-type {
    background: #3498db;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    text-transform: uppercase;
    margin-left: 10px;
}

.eccna-activity-description {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.eccna-activity-detail {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.eccna-detail-icon {
    margin-right: 8px;
    font-size: 1.1em;
}

.eccna-detail-label {
    font-weight: 600;
    color: #34495e;
    margin-right: 8px;
}

.eccna-detail-value {
    color: #2c3e50;
}

.eccna-detail-value.eccna-free {
    color: #27ae60;
    font-weight: 600;
}

.eccna-promo-code .eccna-detail-value {
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
    border: 1px solid #dee2e6;
}

.eccna-activity-register-btn {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.eccna-activity-register-btn:hover {
    background: #229954;
}

.eccna-activity-notes {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 10px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 0.9em;
}

/* Hotels Display Styles */
.eccna-hotels-display {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.eccna-hotels-header {
    text-align: center;
    margin-bottom: 40px;
}

.eccna-hotels-header h2 {
    color: #2c3e50;
    font-size: 2.5em;
    margin-bottom: 15px;
}

.eccna-hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.eccna-hotel-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.eccna-hotel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.eccna-hotel-name {
    color: #2c3e50;
    font-size: 1.4em;
    margin: 0;
    flex: 1;
}

.eccna-hotel-rating {
    margin-left: 15px;
}

.eccna-star.filled {
    color: #f39c12;
}

.eccna-star.empty {
    color: #bdc3c7;
}

.eccna-hotel-description {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.eccna-hotel-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.eccna-hotel-pricing {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.eccna-room-rate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.eccna-rate-value {
    font-size: 1.2em;
    font-weight: 700;
    color: #e74c3c;
}

.eccna-discount-code {
    display: flex;
    align-items: center;
    gap: 10px;
}

.eccna-discount-value {
    background: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-family: monospace;
    border: 1px solid #dee2e6;
}

.eccna-copy-code-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8em;
}

.eccna-hotel-amenities {
    margin: 20px 0;
}

.eccna-amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.eccna-amenity-tag {
    background: #e9ecef;
    color: #495057;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
}

.eccna-hotel-actions {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.eccna-hotel-book-btn,
.eccna-hotel-website-btn {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.eccna-hotel-book-btn.eccna-primary {
    background: #27ae60;
    color: white;
}

.eccna-hotel-website-btn.eccna-secondary {
    background: #6c757d;
    color: white;
}

/* Tickets Display Styles */
.eccna-tickets-display {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.eccna-tickets-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.eccna-ticket-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.eccna-ticket-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #3498db;
}

.eccna-ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.eccna-ticket-name {
    color: #2c3e50;
    font-size: 1.4em;
    margin: 0;
    flex: 1;
}

.eccna-ticket-type {
    background: #3498db;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    text-transform: uppercase;
}

.eccna-ticket-price {
    text-align: center;
    margin: 20px 0;
}

.eccna-price-amount {
    font-size: 2.5em;
    font-weight: 700;
    color: #e74c3c;
}

.eccna-price-amount.eccna-free {
    color: #27ae60;
}

.eccna-ticket-includes ul {
    list-style: none;
    padding: 0;
}

.eccna-ticket-includes li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.eccna-ticket-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.eccna-availability-status.eccna-available {
    color: #27ae60;
    font-weight: 600;
}

.eccna-availability-status.eccna-sold-out {
    color: #e74c3c;
    font-weight: 600;
}

.eccna-ticket-buy-btn {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1em;
    margin: 20px 0;
    transition: background-color 0.3s ease;
}

.eccna-ticket-buy-btn:hover {
    background: #229954;
}

.eccna-ticket-buy-btn.eccna-disabled {
    background: #bdc3c7;
    cursor: not-allowed;
}

/* Translations Display Styles */
.eccna-translations-display {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.eccna-translations-header {
    text-align: center;
    margin-bottom: 40px;
}

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

.eccna-translation-item {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.eccna-translation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.eccna-translation-language {
    color: #2c3e50;
    font-size: 1.4em;
    margin: 0;
    flex: 1;
}

.eccna-translation-type {
    background: #9b59b6;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    text-transform: uppercase;
}

.eccna-translation-request-btn {
    display: inline-block;
    background: #9b59b6;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.eccna-translation-request-btn:hover {
    background: #8e44ad;
}

/* Common Styles */
.eccna-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
}

.eccna-no-data {
    background: #d1ecf1;
    color: #0c5460;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #bee5eb;
    text-align: center;
}

.eccna-code {
    font-family: 'Courier New', monospace;
    background: #f8f9fa;
    padding: 2px 6px;
    border-radius: 3px;
    border: 1px solid #dee2e6;
}

/* Footer Sections */
.eccna-activities-footer,
.eccna-hotels-footer,
.eccna-tickets-footer,
.eccna-translations-footer {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
}

.eccna-booking-tips,
.eccna-ticket-info,
.eccna-translation-info {
    margin-bottom: 30px;
}

.eccna-booking-tips h3,
.eccna-ticket-info h3,
.eccna-translation-info h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.eccna-booking-tips ul,
.eccna-ticket-info ul,
.eccna-translation-info ol {
    color: #6c757d;
    line-height: 1.6;
}

/* Responsive adjustments for all templates */
@media (max-width: 768px) {
    .eccna-event-info-grid,
    .eccna-activities-grid,
    .eccna-hotels-grid,
    .eccna-tickets-grid,
    .eccna-translations-grid {
        grid-template-columns: 1fr;
    }
    
    .eccna-event-title {
        font-size: 2em;
    }
    
    .eccna-hotel-actions {
        flex-direction: column;
    }
    
    .eccna-hotel-header,
    .eccna-activity-header,
    .eccna-ticket-header,
    .eccna-translation-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

