/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* No Image Text Styling */
.no-image-text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 150px;
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Banner Images Layout */
.banner-images {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.image-container .banner-image {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.clickable-image {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.clickable-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: #007bff;
}

.image-label {
    font-size: 12px;
    font-weight: 600;
    color: #495057;
    background-color: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

.header .logo {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
    height: 28px;
    width: auto;
    object-fit: contain;
}

.header .logo:hover {
    transform: scale(1.1);
}

/* Environment Controls */
.environment-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.environment-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: fit-content;
}

.environment-indicator.local {
    background: rgba(0, 123, 255, 0.3);
    border-color: rgba(0, 123, 255, 0.5);
}

.environment-indicator.development {
    background: rgba(40, 167, 69, 0.3);
    border-color: rgba(40, 167, 69, 0.5);
}

.environment-indicator.production {
    background: rgba(220, 53, 69, 0.3);
    border-color: rgba(220, 53, 69, 0.5);
}

.environment-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.environment-selector label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.environment-selector select {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.9rem;
    min-width: 250px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.environment-selector select:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.environment-selector select:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.environment-selector select option {
    background-color: #2c3e50;
    color: white;
    padding: 8px;
}

.header-actions {
    display: flex;
    gap: 15px;
}

/* Authentication Section */
.auth-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
}

.auth-container {
    max-width: 800px;
}

.auth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.auth-header h3 {
    color: #333;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.auth-status.connected {
    background: #d4edda;
    color: #155724;
}

.auth-status.disconnected {
    background: #f8d7da;
    color: #721c24;
}

.auth-status.no-token {
    background: #fff3cd;
    color: #856404;
}

.auth-status i {
    font-size: 8px;
}

.auth-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: end;
}

.token-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.token-input-container textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 12px;
    font-family: 'Courier New', monospace;
    transition: border-color 0.3s ease;
    resize: vertical;
    min-height: 100px;
    line-height: 1.4;
    word-break: break-all;
}

.token-input-container textarea:focus {
    outline: none;
    border-color: #667eea;
}

.auth-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.btn-warning {
    background: #ffc107;
    color: #212529;
}

.btn-warning:hover {
    background: #e0a800;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

/* Filter Section */
.filter-section {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-weight: 500;
    color: #555;
}

.filter-group select,
.filter-group input {
    padding: 10px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: #667eea;
}

/* Banners Section */
.banners-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.section-header {
    padding: 25px;
    border-bottom: 1px solid #e1e5e9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-header h2 {
    color: #333;
    font-size: 1.8rem;
}

.banner-count {
    color: #666;
    font-size: 14px;
}

/* Banner Cards */
.banners-list {
    padding: 25px;
}

.banner-card {
    background: #f8f9fa;
    border: 1px solid #e1e5e9;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.banner-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.banner-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.banner-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.banner-customer {
    color: #666;
    font-size: 14px;
}

.banner-categories {
    color: #007bff;
    font-size: 0.85rem;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.banner-categories i {
    color: #6c757d;
}

.banner-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.status-active {
    background: #d4edda;
    color: #155724;
}

.status-inactive {
    background: #f8d7da;
    color: #721c24;
}

.banner-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 25px;
    margin-bottom: 20px;
}

.banner-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
}

.banner-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.banner-description {
    color: #666;
    line-height: 1.5;
}

.banner-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.meta-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    font-weight: 500;
}

.meta-value {
    font-weight: 500;
    color: #333;
}

.banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    padding: 25px;
    border-bottom: 1px solid #e1e5e9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px 12px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.close:hover {
    opacity: 0.7;
}

/* Form Styles */
.banner-form {
    padding: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

/* Multiple select styling */
.form-group select[multiple],
.filter-group select[multiple] {
    min-height: 120px;
    padding: 8px;
    cursor: pointer;
}

.form-group select[multiple] option,
.filter-group select[multiple] option {
    padding: 8px 12px;
    margin: 2px 0;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.form-group select[multiple] option:hover,
.filter-group select[multiple] option:hover {
    background-color: #f8f9fa;
}

.form-group select[multiple] option:checked,
.filter-group select[multiple] option:checked {
    background-color: #667eea !important;
    color: white !important;
}

/* Ensure proper selection behavior */
select[multiple] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select[multiple]:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

.form-help {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #6c757d;
    font-style: italic;
}

/* Category Selection Layout */
.category-selection-group,
.selected-categories-group {
    flex: 1;
    margin: 0 10px;
}

.category-selection-group:first-child {
    margin-left: 0;
}

.selected-categories-group:last-child {
    margin-right: 0;
}

/* Available Categories Select */
.category-selection-group select {
    min-height: 120px;
    cursor: pointer;
}

.category-selection-group select option {
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.category-selection-group select option:hover {
    background-color: #f8f9fa;
}

/* Selected Categories List */
.selected-categories-list {
    min-height: 120px;
    max-height: 200px;
    overflow-y: auto;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 8px;
    background-color: #f8f9fa;
}

.selected-category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #667eea;
    color: white;
    padding: 8px 12px;
    margin: 4px 0;
    border-radius: 6px;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.selected-category-item:hover {
    background-color: #5a6fd8;
}

.selected-category-name {
    flex: 1;
    font-weight: 500;
}

.selected-category-remove {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    padding: 0 4px;
    border-radius: 3px;
    transition: background-color 0.2s ease;
}

.selected-category-remove:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.selected-categories-empty {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 20px;
    font-size: 14px;
}

/* Category Filter Summary Styles */
.category-filter-summary {
    margin-top: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.category-filter-summary label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
}

.category-filter-display {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 12px;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.filter-placeholder {
    color: #6c757d;
    font-style: italic;
}

.category-filter-active {
    color: #28a745;
    font-weight: 500;
}

.category-count {
    background-color: #007bff;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 5px;
}

.required-indicator {
    color: #dc3545;
    font-weight: bold;
    margin-left: 3px;
}

/* Enhanced Category Selection Styles */
.category-selection-group label,
.selected-categories-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #495057;
}

.form-help {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 5px;
}

.form-help i {
    color: #007bff;
}

/* Category Actions */
.category-actions {
    margin-top: 8px;
    display: flex;
    justify-content: flex-end;
}

.category-actions .btn {
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 4px;
}

.btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
    background-color: transparent;
}

.btn-outline-danger:hover {
    color: white;
    background-color: #dc3545;
    border-color: #dc3545;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e1e5e9;
}

/* Location Section */
.location-section {
    margin-top: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e1e5e9;
}

.location-section h3 {
    margin-bottom: 15px;
    color: #333;
}

.location-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e1e5e9;
}

.location-item input {
    padding: 10px;
    border: 1px solid #e1e5e9;
    border-radius: 4px;
}

.remove-location {
    background: #dc3545;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.remove-location:hover {
    background: #c82333;
}

/* Image Upload */
.image-upload-item {
    margin-bottom: 15px;
}

.image-upload-item label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.image-upload {
    width: 100%;
    padding: 10px;
    border: 2px dashed #e1e5e9;
    border-radius: 6px;
    background: #f8f9fa;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.image-upload:hover {
    border-color: #667eea;
}

/* Analytics */
.analytics-content {
    padding: 25px;
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.analytics-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e1e5e9;
}

.analytics-value {
    font-size: 2rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.analytics-label {
    color: #666;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
}

.loading-overlay .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-overlay p {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    color: #666;
    font-size: 16px;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
}

.toast {
    background: white;
    border-left: 4px solid #28a745;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 300px;
    animation: slideIn 0.3s ease;
}

.toast.error {
    border-left-color: #dc3545;
}

.toast.warning {
    border-left-color: #ffc107;
}

.toast.info {
    border-left-color: #17a2b8;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .header-left {
        align-items: center;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .header .logo {
        height: 24px;
        width: auto;
        object-fit: contain;
    }
    
    .environment-controls {
        gap: 8px;
    }
    
    .environment-indicator {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .environment-selector {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .environment-selector select {
        min-width: 200px;
        font-size: 0.8rem;
    }
    
    .auth-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .auth-actions {
        justify-content: center;
    }
    
    .filter-row {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .location-item {
        grid-template-columns: 1fr;
    }
    
    .banner-actions {
        justify-content: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .analytics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.5rem;
    }
    
    .banner-card {
        padding: 15px;
    }
    
    .banner-meta {
        grid-template-columns: 1fr;
    }
    
    .toast {
        min-width: 250px;
    }
    
    .auth-actions {
        flex-direction: column;
    }
    
    .auth-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .token-input-container textarea {
        font-size: 11px;
        min-height: 80px;
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-state i {
    font-size: 4rem;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-state h3 {
    margin-bottom: 10px;
    color: #333;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.hidden { display: none; }
.visible { display: block; }

/* Image Modal Styles */
.image-modal {
    z-index: 2000;
}

.image-modal-content {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    margin: 2% auto;
    overflow: hidden;
}

.image-modal-body {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    min-height: 400px;
}

.modal-image {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.image-modal .modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
}

.image-modal .modal-header h2 {
    margin: 0;
    font-size: 1.25rem;
    color: #495057;
}

/* Click outside modal to close */
.image-modal {
    cursor: pointer;
}

.image-modal-content {
    cursor: default;
}

/* Click URL Link Styling */
.click-url-link {
    color: #007bff;
    text-decoration: none;
    font-size: 13px;
    word-break: break-all;
    transition: color 0.2s ease;
}

.click-url-link:hover {
    color: #0056b3;
    text-decoration: underline;
}