/* Modern AI Product Search Assistant Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
    overflow-x: hidden;
}

/* App Container */
.app-container {
    position: relative;
    min-height: 100vh;
    width: 100%;
}


.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    color: #1f2937;
    background: rgba(0, 0, 0, 0.05);
}

.admin-link {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.admin-link:hover {
    background: linear-gradient(135deg, #5a67d8, #6b46c1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}



/* Authentication Required Message */
.welcome-message {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 16px;
    border: 2px solid #3b82f6;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.15);
    max-width: 500px;
    margin: 0 auto;
}

.welcome-icon {
    font-size: 4rem;
    color: #3b82f6;
    margin-bottom: 1.5rem;
}

.welcome-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 1rem;
}

.welcome-message p {
    font-size: 1.1rem;
    color: #1e3a8a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-highlights {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid #93c5fd;
    min-width: 120px;
}

.feature-item i {
    font-size: 1.5rem;
    color: #3b82f6;
}

.feature-item span {
    font-size: 0.9rem;
    color: #1e40af;
    font-weight: 600;
}


/* Background Gradient */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #f7fbff 0%, #eef4ff 50%, #e7f0ff 100%);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Conic gradient background */
.conic-bg {
    position: absolute;
    inset: -10%;
    top: -12%;
    left: -8%;
    height: 140%;
    width: 140%;
    background: conic-gradient(
        at 50% 38%,
        rgba(255, 173, 199, 0.30),
        rgba(255, 184, 133, 0.28),
        rgba(255, 240, 163, 0.26),
        rgba(173, 205, 255, 0.30),
        rgba(255, 173, 199, 0.30)
    );
    filter: blur(40px);
    animation: spin 80s linear infinite;
}

/* Radial gradient shapes */
.radial-shape-1 {
    position: absolute;
    left: 50%;
    top: 4rem;
    transform: translateX(-50%);
    height: 840px;
    width: 700px;
    border-radius: 50% 50% 50% 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 182, 193, 0.56),
        transparent 65%
    );
    filter: blur(64px);
}

.radial-shape-2 {
    position: absolute;
    right: -200px;
    top: 7rem;
    height: 820px;
    width: 760px;
    border-radius: 50% 50% 50% 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 190, 140, 0.48),
        transparent 66%
    );
    filter: blur(64px);
}

.radial-shape-3 {
    position: absolute;
    left: 1.5rem;
    top: -12rem;
    height: 600px;
    width: 560px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(255, 245, 170, 0.46),
        transparent 64%
    );
    filter: blur(64px);
}

.radial-shape-4 {
    position: absolute;
    left: -14rem;
    bottom: -220px;
    height: 740px;
    width: 720px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(167, 199, 255, 0.46),
        transparent 64%
    );
    filter: blur(64px);
}

.radial-shape-5 {
    position: absolute;
    left: 33.333333%;
    top: 33.333333%;
    height: 620px;
    width: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        rgba(211, 191, 255, 0.28),
        transparent 64%
    );
    filter: blur(64px);
}

/* Final overlay */
.final-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.22) 58%,
        rgba(255, 255, 255, 0.55) 100%
    );
}

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

/* Main Content */
.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 0.75rem;
    padding-top: 2rem; /* Reduced padding since no navigation header */
    position: relative;
    z-index: 1;
}

/* Header Section */
.header-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.main-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
    letter-spacing: -0.025em;
}

.subtitle {
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

/* Search Section */
.search-section {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.search-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-radius: 9999px;
    border: 1px solid #e5e7eb;
    padding: 1rem;
    height: 3.5rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-container:focus-within {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
    color: #111827;
    font-weight: 400;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.25rem;
    width: 2.25rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6b7280;
    background: #f3f4f6;
    flex-shrink: 0;
}

.search-btn:hover {
    background: #e5e7eb;
}

.search-btn.voice-btn.recording {
    background: #fef2f2;
    color: #dc2626;
}

.search-btn svg {
    height: 1.25rem;
    width: 1.25rem;
}

/* Status Indicator */
.status-indicator {
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.status-content {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-spinner {
    position: relative;
    display: inline-flex;
    height: 0.625rem;
    width: 0.625rem;
}

.status-spinner .animate-ping {
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 9999px;
    background-color: #60a5fa;
    opacity: 0.75;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.status-spinner .relative {
    position: relative;
    display: inline-flex;
    border-radius: 9999px;
    height: 0.625rem;
    width: 0.625rem;
    background-color: #3b82f6;
}

.status-content span {
    color: #6b7280;
    font-size: 0.75rem;
}

/* Status states */
.status-recording .status-spinner .animate-ping,
.status-recording .status-spinner .relative {
    background-color: #ef4444;
}

.status-uploading .status-spinner .animate-ping,
.status-uploading .status-spinner .relative {
    background-color: #3b82f6;
}

.status-error .status-spinner .animate-ping,
.status-error .status-spinner .relative {
    background-color: #dc2626;
}

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

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Sample Prompts */
.sample-prompts-section {
    margin-bottom: 1.5rem;
}

.prompts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .prompts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .prompts-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        max-width: 300px;
    }
}

.prompt-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.prompt-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.prompt-btn i {
    font-size: 1.1rem;
    color: #667eea;
}

.prompt-btn span {
    font-weight: 600;
    color: #374151;
    font-size: 0.8rem;
}

/* Results Section */
.results-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 1.5rem;
}

.results-section.hidden {
    display: none;
}

.results-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.results-title i {
    color: #667eea;
}

.results-content {
    min-height: 120px;
}

.results-placeholder {
    text-align: center;
    padding: 1.5rem 1rem;
    color: #6b7280;
}

.placeholder-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #9ca3af;
}

.results-placeholder h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.results-placeholder p {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Results Cards */
.result-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.result-card h3 {
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.result-content {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Formatted Answer Styling */
.formatted-answer {
    color: #374151;
    line-height: 1.7;
}

.formatted-answer p {
    margin-bottom: 1rem;
}

.formatted-answer p:last-child {
    margin-bottom: 0;
}

.menu-title {
    color: #1f2937;
    font-weight: 800;
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.menu-title:first-child {
    margin-top: 0;
}

.menu-item {
    color: #374151;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem 0;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #10b981;
    position: relative;
}

.menu-item::before {
    content: '🍹';
    position: absolute;
    left: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 0.25rem;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.detail-label {
    color: #6b7280;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 0.5rem;
}

.detail-value {
    color: #059669;
    font-weight: 500;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    margin: 0 0.25rem;
    font-size: 0.9rem;
}



/* Error States */
.error-card {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.error-card h3 {
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 1rem;
}

.error-card p {
    color: #991b1b;
    margin-bottom: 1.5rem;
}

.error-suggestions {
    background: #fef7f0;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 1.25rem;
    text-align: left;
}

.error-suggestions h4 {
    color: #ea580c;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.error-suggestions ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: #c2410c;
}

.error-suggestions li {
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.75rem;
}

.skeleton-text.short { width: 60%; }
.skeleton-text.medium { width: 80%; }
.skeleton-text.long { width: 100%; }

.skeleton-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Processing Time */
.processing-time {
    text-align: center;
    color: #6b7280;
    font-size: 0.75rem;
    margin-top: 1rem;
    padding: 0.5rem 0.75rem;
    background: #f3f4f6;
    border-radius: 6px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 1.5rem 1rem;
    }
    
    .main-title {
        font-size: 2.25rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .search-input-group {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .search-btn {
        width: 2.75rem;
        height: 2.75rem;
    }
    
    .prompts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .prompt-btn {
        padding: 1.25rem 0.75rem;
    }
    
    .results-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    
    .prompts-grid {
        grid-template-columns: 1fr;
    }
    
    .search-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-input {
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    .search-btn {
        width: 100%;
        height: 3rem;
    }
}

/* Voice Button States */
.voice-btn.recording {
    background: #ef4444;
    color: white;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
}

/* Image Search Results */
.image-result {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.image-analysis {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 1.25rem;
    margin: 1rem 0;
}

.image-analysis h4 {
    color: #1d4ed8;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.image-analysis p {
    color: #1e40af;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Drag and Drop */
.drop-zone {
    border: 2px dashed #d1d5db;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.drop-zone.drag-over {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.drop-zone i {
    font-size: 3rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.drop-zone h3 {
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.drop-zone p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Feedback Button Styles */
.feedback-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.feedback-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.feedback-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    opacity: 0.8;
    filter: blur(1px);
}

.feedback-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    opacity: 0.6;
    filter: blur(2px);
}

.feedback-btn:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.feedback-btn:hover::before {
    opacity: 1;
    filter: blur(1.5px);
}

.feedback-btn:hover::after {
    opacity: 0.8;
    filter: blur(3px);
}

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

.feedback-btn svg {
    height: 1.25rem;
    width: 1.25rem;
}

/* Feedback Modal Styles */
.feedback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 1rem;
}

.feedback-modal.hidden {
    display: none;
}

.feedback-modal-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.feedback-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.feedback-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: #f3f4f6;
    color: #374151;
}

.feedback-form {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    background: white;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

/* Custom question input styling */
#customQuestionGroup {
    transition: all 0.3s ease;
    overflow: hidden;
}

#customQuestionGroup.show {
    display: block !important;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 100px;
        padding-top: 1.5rem;
        padding-bottom: 0;
    }
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

.btn-primary {
    background: #000000;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: #333333;
    transform: translateY(-1px);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

/* Mobile Responsive for Feedback */
@media (max-width: 768px) {
    
    .feedback-container {
        bottom: 1rem;
        right: 1rem;
    }
    
    .feedback-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .feedback-btn span {
        display: none;
    }
    
    .feedback-modal {
        padding: 0.5rem;
    }
    
    .feedback-modal-content {
        max-height: 95vh;
    }
    
    .feedback-modal-header {
        padding: 1rem 1rem 0 1rem;
    }
    
    .feedback-form {
        padding: 0 1rem 1rem 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }
}
