/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Desktop responsive design */
@media (min-width: 768px) {
    .container {
        max-width: 600px;
        padding: 30px;
    }
    
    .recorder-section,
    .text-input-section {
        padding: 50px 40px;
    }
    
    header h1 {
        font-size: 2.8rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .doctor-bio {
        font-size: 1.1rem;
        max-width: 400px;
    }
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.header-image {
    margin-bottom: 20px;
}

.doctor-headshot {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.8);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    object-fit: cover;
}

header h1 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-weight: 600;
}

.subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 15px;
}

.doctor-bio {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-weight: 400;
    font-style: italic;
    max-width: 300px;
    margin: 0 auto;
    line-height: 1.4;
}

.settings-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.settings-btn:hover {
    background: rgba(255,255,255,0.3);
}

/* Main content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* User Toggle */
.user-toggle-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.user-toggle {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.user-label {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.user-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
}

.user-btn:hover {
    background: #e9ecef;
    border-color: #4A90E2;
}

.user-btn.active {
    background: #4A90E2;
    border-color: #4A90E2;
    color: white;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.3);
}

/* Mode Toggle */
.mode-toggle-container {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.mode-toggle {
    background: rgba(255,255,255,0.9);
    border-radius: 25px;
    padding: 8px;
    display: flex;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.mode-btn {
    background: transparent;
    border: none;
    border-radius: 20px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
    min-width: 120px;
    justify-content: center;
}

.mode-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.mode-btn:hover:not(.active) {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.mode-icon {
    font-size: 1.1rem;
}

.mode-text {
    font-weight: 600;
}

.recorder-section {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

/* Status indicator */
.status-indicator {
    margin-bottom: 30px;
}

#statusText {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.status-indicator.recording #statusText {
    color: #e74c3c;
    animation: pulse 1.5s infinite;
}

.status-indicator.processing #statusText {
    color: #f39c12;
}

.status-indicator.success #statusText {
    color: #27ae60;
}

.status-indicator.error #statusText {
    color: #e74c3c;
}

/* Record button */
.record-button-container {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.record-btn {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.record-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(74, 144, 226, 0.5);
}

.record-btn:active {
    transform: scale(0.95);
}

.record-btn.recording {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    animation: pulse 1.5s infinite;
}

.record-btn.processing {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    cursor: not-allowed;
}

.record-icon {
    font-size: 2rem;
}

.record-text {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Waveform animation */
.waveform-container {
    margin-bottom: 20px;
}

.waveform {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    height: 40px;
}

.wave-bar {
    width: 4px;
    background: #4A90E2;
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; }
.wave-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { height: 10px; }
    50% { height: 30px; }
}

/* Progress bar */
.progress-container {
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #ecf0f1;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4A90E2, #357ABD);
    border-radius: 3px;
    transition: width 0.3s ease;
    width: 0%;
}

.progress-text {
    color: #666;
    font-size: 0.9rem;
}

/* Recording Controls */
.recording-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
    flex-wrap: wrap;
    animation: slideIn 0.3s ease-out;
}

.control-btn {
    background: rgba(255,255,255,0.9);
    border: 2px solid #ddd;
    border-radius: 15px;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 100px;
    justify-content: center;
}

.pause-btn {
    border-color: #f39c12;
    color: #f39c12;
}

.pause-btn:hover {
    background: #f39c12;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
}

.pause-btn.paused {
    background: #f39c12;
    color: white;
}

.stop-btn {
    border-color: #e67e22;
    color: #e67e22;
}

.stop-btn:hover {
    background: #e67e22;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.cancel-btn {
    border-color: #e74c3c;
    color: #e74c3c;
}

.cancel-btn:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.control-btn:active {
    transform: translateY(0);
}

.control-icon {
    font-size: 1.1rem;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Message */
.success-message, .text-success-message {
    margin-top: 30px;
    text-align: center;
    padding: 30px 20px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    font-weight: bold;
    animation: successPulse 0.6s ease-out;
}

.success-message h3 {
    color: #27ae60;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.success-message p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.send-another-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    margin: 0 auto;
    min-width: 200px;
}

.send-another-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.send-another-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.2rem;
}

@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Text Input Section */
.text-input-section {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
}

.text-input-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-label {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    text-align: left;
    margin-bottom: 10px;
}

.text-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.3s ease;
    background: #fafafa;
}

.text-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    align-self: center;
    min-width: 180px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-icon {
    font-size: 1.2rem;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-spinner {
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin-bottom: 20px;
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
}

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

/* Success Popup */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.popup-content {
    text-align: center;
    animation: popupFadeIn 0.5s ease-out;
}

.success-image {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@keyframes popupFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.modal-header h2 {
    margin: 0;
    color: #333;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: #666;
}

.modal-body {
    padding: 25px;
}

.app-info {
    background: linear-gradient(135deg, #4A90E2, #357ABD);
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
}

.app-info p {
    margin: 5px 0;
}

.app-info p:first-child {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.app-info p:last-child {
    opacity: 0.9;
    font-size: 0.9rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4A90E2;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.webhook-info {
    font-weight: 600;
    color: #4A90E2;
}

.webhook-display {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 6px;
    border-left: 3px solid #4A90E2;
    font-family: monospace;
    font-size: 0.85rem;
    word-break: break-all;
    margin: 8px 0 0 0;
    color: #333;
}

.save-btn {
    width: 100%;
    background: #4A90E2;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.save-btn:hover {
    background: #357ABD;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    z-index: 1001;
    animation: slideUp 0.3s ease;
}

.notification.success {
    background: #27ae60;
}

.notification.error {
    background: #e74c3c;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .recorder-section {
        padding: 30px 20px;
    }
    
    .record-btn {
        width: 100px;
        height: 100px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .modal-content {
        background: #2c3e50;
        color: white;
    }
    
    .modal-header {
        border-bottom-color: #34495e;
    }
    
    .form-group input,
    .form-group select {
        background: #34495e;
        border-color: #4a5f7a;
        color: white;
    }
    
    .form-group input:focus,
    .form-group select:focus {
        border-color: #4A90E2;
    }
}

/* Video Elements */
.greeting-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    animation: fadeIn 0.5s ease-out;
}

.greeting-video {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.success-video-container,
.text-success-video-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.success-video {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: successVideoIn 0.6s ease-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes successVideoIn {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Hide success icon when video is shown */
.success-video-container ~ .success-icon,
.text-success-video-container ~ .success-icon {
    display: none;
}

/* Responsive video adjustments */
@media (max-width: 768px) {
    .greeting-video {
        max-width: 95vw;
        max-height: 80vh;
    }
    
    .success-video {
        width: 100px;
        height: 100px;
    }
}

/* Toggle Switch Styles */
.toggle-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
}

.toggle-text {
    font-weight: 500;
    color: #495057;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 24px;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.toggle-input:checked + .toggle-slider {
    background-color: #ffc107;
}

.toggle-input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.toggle-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 5px 0 0 0;
    font-style: italic;
}

/* Footer Styles */
.app-footer {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 15px;
    flex-wrap: wrap;
}

.version-info {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.about-btn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.about-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

.about-btn:active {
    transform: translateY(0);
}

/* Install Button Styles */
.install-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.install-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
}

.install-btn:active {
    transform: translateY(0);
}

.install-icon {
    font-size: 1rem;
}

.install-text {
    font-weight: 600;
}

/* About Modal Styles */
.about-modal-content {
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
}

.about-modal-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-photo {
    text-align: center;
    margin-bottom: 20px;
}

.ezra-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.about-content h3 {
    color: #007bff;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.about-content h4 {
    color: #495057;
    margin: 20px 0 10px 0;
    font-size: 1.1rem;
}

.about-content p {
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 15px;
}

.about-content ul {
    list-style: none;
    padding-left: 0;
}

.about-content ul li {
    padding: 8px 0;
    color: #495057;
    border-bottom: 1px solid #f8f9fa;
}

.team-credits {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #007bff;
}

.team-list {
    margin-top: 10px;
}

.team-list li {
    padding: 10px 0;
    font-size: 1rem;
}

.version-info-detailed {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.version-info-detailed p {
    margin: 5px 0;
    color: #1565c0;
    font-weight: 500;
}

/* Mobile responsiveness for about modal */
@media (max-width: 768px) {
    .about-modal-content {
        margin: 10px;
        max-width: calc(100vw - 20px);
    }
    
    .about-modal-body {
        flex-direction: column;
    }
    
    .ezra-photo {
        width: 100px;
        height: 100px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        justify-content: center;
    }
}
