/**
 * screens.css
 * Стили для различных экранов приложения
 */

/* Базовые стили для всех экранов */
.screen {
    width: 100%;
    max-width: 500px;
    padding: 35px;
    background-color: rgba(18, 18, 18, 0.6);
    border-radius: var(--card-radius);
    border: var(--glassmorphism-border);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    animation: fadeIn 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.0);
    transform-origin: center;
    position: relative;
    overflow: hidden;
    transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

.screen::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    pointer-events: none;
}

.screen.active {
    display: block;
}

/* Главный экран (welcome) */
#welcome-screen {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    margin-top: -26px;
}

#welcome-screen.active {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

#welcome-screen .instruction {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    text-align: center;
    margin: 0 auto 40px;
    max-width: 450px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Экран вопроса */
#question-screen {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding-top: 30px !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
    padding-bottom: 20px !important;
}

#question-screen.active {
    display: flex;
}

#question-screen .screen-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    background: rgba(30, 30, 42, 0.7);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#question-screen .screen-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 0.75rem;
}

#question-screen .screen-title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

#question-screen .question-options,
#question-screen .input-group,
#question-screen .navigation-buttons {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 5px !important;
}

/* Экран загрузки */
#loading-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 100%;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    border-radius: 0;
    background-color: rgba(10, 10, 20, 0.85);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    z-index: 9999;
}

#loading-screen.active {
    display: flex;
    animation: fadeIn 0.5s ease forwards;
}

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    border-right: 4px solid transparent;
    border-bottom: 4px solid var(--primary-color);
    border-left: 4px solid transparent;
    animation: loaderSpin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    box-shadow: 0 0 20px rgba(227, 6, 19, 0.3), 
                inset 0 0 15px rgba(227, 6, 19, 0.2);
    position: relative;
}

.loader::before, 
.loader::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.loader::before {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid rgba(227, 6, 19, 0.2);
    animation: loaderPulse 2s ease-out infinite;
    opacity: 0;
}

.loader::after {
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px 2px rgba(227, 6, 19, 0.5);
}

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

@keyframes loaderPulse {
    0% { transform: scale(1); opacity: 0; }
    50% { opacity: 0.4; }
    100% { transform: scale(1.3); opacity: 0; }
}

.loading-text-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.loading-text {
    font-size: 22px;
    color: var(--white);
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
    max-width: 80%;
    margin: 0 auto;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    animation: textPulse 2s ease-in-out infinite;
}

.loading-dots {
    display: flex;
    justify-content: center;
    margin-top: 5px;
    height: 30px;
}

.dot {
    font-size: 30px;
    line-height: 20px;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(227, 6, 19, 0.6);
    animation: dotPulse 1.4s infinite;
    opacity: 0;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotPulse {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    25% {
        opacity: 1;
        transform: translateY(-3px);
    }
    50% {
        opacity: 1;
        transform: translateY(0);
    }
    75% {
        opacity: 1;
        transform: translateY(3px);
    }
    100% {
        opacity: 0;
        transform: translateY(0);
    }
}

.loading-facts {
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--card-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    text-align: center;
    font-style: italic;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.loading-fact {
    margin: 0;
    color: var(--dark-gray);
    font-size: 17px;
    transition: opacity 0.5s ease;
    line-height: 1.6;
}

/* Экран результатов */
#result-screen {
    display: none;
    padding: 25px;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 15px;
    background-color: rgba(20, 20, 40, 0.7);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#result-screen.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

.result-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 580px;
    margin: 0 auto;
    padding: 28px 24px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    transition: none !important;
}

.result-screen.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 20 !important;
}

.result-screen .screen-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    width: 100%;
}

.result-screen .screen-icon {
    font-size: 35px;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
    text-shadow: 0 0 10px rgba(227, 6, 19, 0.3);
}

.result-screen .screen-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.7);
}

.result-screen .card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    animation: floatingCard 6s ease-in-out infinite;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    width: 100%;
    position: relative;
    top: 24px;
}

.result-screen.active .card-info {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.2s;
}

/* Стили для полноэкранного просмотра карты */
.card-image-container {
    width: 180px;
    height: 180px;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    background-color: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.fullscreen-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
    font-size: 14px;
}

.card-image-container:hover .fullscreen-icon {
    opacity: 0.8;
}

#card-fullscreen-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.card-modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 600px;
    margin: 10% auto;
    background-color: transparent;
    border: none;
    padding: 20px;
}

.fullscreen-card-img {
    max-width: 90%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(227, 6, 19, 0.5);
}

.fullscreen-card-title {
    margin-top: 20px;
    color: white;
    font-size: 24px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: white;
    background-color: rgba(227, 6, 19, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    border: none;
}

.close-modal:hover {
    background-color: rgba(227, 6, 19, 1);
    transform: scale(1.1);
}

/* Стили для кнопок обратной связи */
.feedback-buttons {
    margin-top: 30px;
    text-align: center;
    width: 100%;
}

.feedback-buttons p {
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--white);
    opacity: 0.9;
}

.feedback-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

.btn-feedback {
    background: none;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-feedback:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.btn-feedback.selected {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 15px rgba(227, 6, 19, 0.5);
}

.icon-sad::before,
.icon-neutral::before,
.icon-happy::before {
    font-family: Arial, sans-serif;
    font-size: 20px;
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    content: "\25CB";
}

.btn-feedback[data-value="1"].selected .icon-sad::before,
.btn-feedback[data-value="2"].selected .icon-neutral::before,
.btn-feedback[data-value="3"].selected .icon-happy::before {
    content: "\25CF";
    color: #ffffff;
}

/* Индикатор метода выбора карты */
.selection-method-indicator {
    text-align: center;
    font-size: 14px;
    font-style: italic;
    opacity: 0.8;
    margin-top: -5px;
    margin-bottom: 15px;
    padding: 5px 10px;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    top: -16px;
}

.selection-method-indicator.image-based {
    color: #e3f2fd;
    text-shadow: 0 0 5px rgba(33, 150, 243, 0.5);
}

.selection-method-indicator.random-based {
    color: #fff8e1;
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}

@keyframes floatingCard {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .screen {
        padding: 30px 25px;
        border-radius: 20px;
    }
    
    .result-screen {
        padding: 24px 20px;
    }
    
    .result-screen .screen-icon {
        font-size: 30px;
        margin-bottom: 10px;
    }
    
    .result-screen .screen-title {
        font-size: 28px;
    }
    
    .result-screen .card-image-container {
        width: 160px;
        height: 160px;
    }
    
    .result-screen .card-title {
        font-size: 22px;
    }
    
    .prediction {
        padding: 24px 20px;
        font-size: 16px;
        min-height: 100px;
    }
}

@media (max-width: 480px) {
    .screen {
        padding: 25px 20px;
    }
    
    #welcome-screen .instruction {
        font-size: 16px;
        margin-bottom: 30px;
        max-width: 320px;
    }
    
    #question-screen {
        padding: 20px !important;
        gap: 12px !important;
    }
    
    #question-screen #image-preview-container {
        width: 140px !important;
        height: 95px !important;
        margin: 5px auto 10px !important;
    }
    
    #question-screen .screen-title {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }
    
    #question-screen .instruction {
        font-size: 16px !important;
        margin-bottom: 5px !important;
    }
    
    .result-screen {
        padding: 20px 16px;
    }
    
    .result-screen .screen-icon {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .result-screen .screen-title {
        font-size: 24px;
    }
    
    .result-screen .card-image-container {
        width: 140px;
        height: 140px;
    }
    
    .result-screen .card-title {
        font-size: 20px;
    }
    
    .prediction {
        padding: 20px 16px;
        font-size: 15px;
        min-height: 90px;
    }
    
    .selection-method-indicator {
        font-size: 12px;
        margin-top: -3px;
        margin-bottom: 10px;
    }
}

@media (max-width: 360px) {
    .screen {
        padding: 20px 15px;
    }
    
    #question-screen {
        padding: 15px !important;
        gap: 10px !important;
    }
    
    #question-screen #image-preview-container {
        width: 120px !important;
        height: 80px !important;
    }
    
    #question-screen .screen-title {
        font-size: 18px !important;
    }
    
    #result-screen {
        padding: 15px 12px !important;
    }
    
    #result-screen .screen-title {
        font-size: 20px !important;
    }
    
    #result-screen .card-image-container {
        width: 120px !important;
        height: 120px !important;
    }
}

/* Стили для камеры и превью фото */
.camera-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#camera-stream {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.camera-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}

#photo-preview-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
    text-align: center;
}

#photo-preview-container img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.preview-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}

.hidden {
    display: none !important;
}

.remove-image-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.remove-image-btn:hover {
    background-color: rgba(227, 6, 19, 0.9);
    opacity: 1;
}

.image-preview-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px;
    text-align: center;
    position: relative;
}

.centered-title {
    text-align: center;
    margin: 20px auto;
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 600;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
    width: 100%;
}

/* Поле для своего вопроса */
#custom-question-group {
    margin: 15px 0;
    width: 100%;
}

#custom-question-group textarea {
    width: 100%;
    min-height: 80px;
    padding: 15px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(30, 30, 42, 0.7);
    color: #FFFFFF;
    font-size: 16px;
    resize: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#custom-question-group textarea:focus {
    outline: none;
    border-color: rgba(227, 6, 19, 0.5);
    box-shadow: 0 0 10px rgba(227, 6, 19, 0.3);
}

/* Кнопки навигации */
.navigation-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
    gap: 10px;
}

.navigation-buttons button {
    flex: 1;
    min-width: 120px;
}

/* При малой ширине экрана, кнопки будут одна под другой */
@media (max-width: 400px) {
    .navigation-buttons {
        flex-direction: column;
    }
    
    .navigation-buttons button {
        width: 100%;
        margin-bottom: 10px;
    }
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

.card-image:hover {
    transform: scale(1.08);
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin: 15px 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.prediction-container {
    position: relative;
    margin: 10px 0 24px;
    background: rgba(30, 30, 42, 0.6);
    border-radius: var(--card-radius);
    padding: 3px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 1 !important;
    transition: none !important;
    width: 100%;
    max-width: 100%;
    border: 1px solid rgba(227, 6, 19, 0.2);
}

.result-screen.active .prediction-container {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.4s;
}

.prediction-container::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, 
        rgba(227, 6, 19, 0.5) 0%, 
        transparent 50%, 
        rgba(227, 6, 19, 0.5) 100%);
    z-index: -1;
    border-radius: calc(var(--card-radius) + 1px);
    opacity: 0.7;
}

.prediction {
    padding: 28px 24px;
    background-color: transparent;
    border-radius: calc(var(--card-radius) - 3px);
    line-height: 1.7;
    white-space: pre-line;
    font-size: 17px;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
    font-weight: 400;
    color: #FFFFFF;
    text-align: left;
    display: block;
    width: 100%;
    min-height: 120px;
    opacity: 1 !important;
    visibility: visible !important;
}

.prediction::before {
    content: "\201C";
    position: absolute;
    top: 5px;
    left: 10px;
    font-size: 50px;
    line-height: 0.5;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.prediction::after {
    content: "\201D";
    position: absolute;
    bottom: 5px;
    right: 12px;
    font-size: 50px;
    line-height: 0.5;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.prediction.active {
    animation: fadeInText 0.5s ease-in-out forwards;
}

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

/* Стили для экрана выбора действия */
#action-select-screen {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding-top: 30px !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
    padding-bottom: 20px !important;
}

#action-select-screen.active {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.action-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 350px;
    margin: 30px auto;
}

.action-option {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-option:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(227, 6, 19, 0.3);
}

.action-option i {
    font-size: 24px;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.action-option p {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    color: #FFFFFF;
}

/* Стили для экрана сканирования QR-кода */
.qr-scanner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.qr-scanner-frame {
    width: 200px;
    height: 200px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.5);
}

.qr-scanner-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
}

.qr-scanner-text {
    color: white;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.camera-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 60vh;
    max-height: 60vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* Стили для иконок экрана выбора действия */
.icon-camera:before {
    content: '\1F4F7'; /* Unicode для иконки камеры */
    font-size: 24px;
    width: 30px;
    display: inline-block;
    text-align: center;
}

.icon-gallery:before {
    content: '\1F5BC'; /* Unicode для иконки галереи/изображения */
    font-size: 24px;
    width: 30px;
    display: inline-block;
    text-align: center;
} 