* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: linear-gradient(135deg, #2c3e50, #4a6491);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

header h1 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.controls {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #7f8c8d;
    color: white;
}

.btn-secondary:hover {
    background-color: #707b7c;
    transform: translateY(-2px);
}

.btn-danger {
    background-color: #e74c3c;
    color: white;
}

.btn-danger:hover {
    background-color: #c0392b;
}

.file-upload input[type="file"] {
    display: none;
}

.google-sheets-input {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.sheets-input {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    min-width: 250px;
    flex-grow: 1;
    transition: all 0.3s;
}

.sheets-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.help-text {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.load-status {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 12px 15px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #856404;
    font-size: 0.9rem;
}

.load-status.error {
    background-color: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.load-status.success {
    background-color: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.score-display {
    margin-left: auto;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
}

.check-form {
    margin-bottom: 25px;
}

.form-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #34495e;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.form-input {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-input:required:invalid {
    border-color: #e74c3c;
}

.summary {
    margin-bottom: 25px;
}

.summary-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.summary-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 6px;
    min-width: 180px;
}

.stat-label {
    font-weight: 600;
    color: #7f8c8d;
    display: block;
    margin-bottom: 5px;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.category {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.category-title {
    background: linear-gradient(to right, #ecf0f1, #dfe6e9);
    color: #2c3e50;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #bdc3c7;
    cursor: pointer;
    user-select: none;
}

.collapse-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    transition: transform 0.2s;
    border-radius: 4px;
}

.collapse-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.collapse-btn i {
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.category-name {
    flex-grow: 1;
}

.category-score {
    background-color: #3498db;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.subcategory {
    margin: 15px;
    border: 1px solid #ecf0f1;
    border-radius: 6px;
    overflow: hidden;
}

.subcategory-title {
    background-color: #f8f9fa;
    padding: 15px;
    color: #34495e;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #ecf0f1;
    cursor: pointer;
    user-select: none;
}

.subcategory-collapse {
    color: #34495e;
}

.indicators-container {
    padding: 10px;
}

.indicator {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 15px;
    background-color: #fefefe;
    transition: all 0.3s ease;
}

.indicator:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.indicator-header {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
}

.indicator-text {
    flex-grow: 1;
    padding-right: 15px;
}

.checkbox-container {
    display: inline-block;
    position: relative;
    cursor: pointer;
    user-select: none;
    width: 28px;
    height: 28px;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 28px;
    width: 28px;
    background-color: #eee;
    border-radius: 4px;
    transition: all 0.3s;
    border: 2px solid #ddd;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ddd;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #2ecc71;
    border-color: #27ae60;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.indicator-footer {
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fafafa;
}

.score-badge {
    background-color: #f1c40f;
    color: #333;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.comment-section {
    display: flex;
    align-items: center;
    flex-grow: 1;
    max-width: 500px;
    margin-left: 15px;
    position: relative;
}

.comment-input {
    flex-grow: 1;
    padding: 8px 15px 8px 35px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.comment-input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.comment-icon {
    position: absolute;
    left: 12px;
    color: #7f8c8d;
}

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.modal-header {
    padding: 20px;
    background-color: #2c3e50;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 0 0;
}

.close-modal {
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #ecf0f1;
}

.modal-body {
    padding: 20px;
}

.print-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.print-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.print-options input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #3498db;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

/* Стили для печати */
@media print {
    body * {
        visibility: hidden;
    }
    
    .print-section, .print-section * {
        visibility: visible;
    }
    
    .print-section {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    
    .no-print {
        display: none !important;
    }
    
    .indicator {
        break-inside: avoid;
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    header {
        padding: 15px;
    }
    
    header h1 {
        font-size: 1.4rem;
    }
    
    .controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .google-sheets-input {
        flex-direction: column;
        width: 100%;
    }
    
    .sheets-input {
        width: 100%;
        min-width: auto;
    }
    
    .score-display {
        margin-left: 0;
        text-align: center;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .indicator-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .indicator-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .comment-section {
        margin-left: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .category-title, .subcategory-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Боковое меню навигации */
.nav-menu {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 280px;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
    overflow-y: auto;
}

.nav-menu-open {
    transform: translateX(0);
}

.nav-menu-toggle {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 10000;
    background: linear-gradient(135deg, #2c3e50, #4a6491);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.nav-menu-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.nav-menu-content {
    padding: 20px;
    padding-top: 80px;
}

.nav-menu-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.nav-menu-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-menu-item {
    display: block;
    padding: 12px 15px;
    color: #34495e;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.nav-menu-item:hover {
    background-color: #f8f9fa;
    border-left-color: #3498db;
    color: #2c3e50;
    transform: translateX(5px);
}

.nav-menu-item:active {
    background-color: #ecf0f1;
}

/* Боковое меню навигации */
.nav-menu {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 280px;
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
    overflow-y: auto;
}

.nav-menu-open {
    transform: translateX(0);
}

.nav-menu-toggle {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 10000;
    background: linear-gradient(135deg, #2c3e50, #4a6491);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.nav-menu-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.nav-menu-content {
    padding: 20px;
    padding-top: 80px;
}

.nav-menu-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
}

.nav-menu-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-menu-item {
    display: block;
    padding: 12px 15px;
    color: #34495e;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.nav-menu-item:hover {
    background-color: #f8f9fa;
    border-left-color: #3498db;
    color: #2c3e50;
    transform: translateX(5px);
}

.nav-menu-item:active {
    background-color: #ecf0f1;
}
/* Стили для фото */
.photo-section {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.btn-photo-upload {
    padding: 8px 15px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.btn-photo-upload:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.photo-preview {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.photo-item {
    position: relative;
}

.photo-item img {
    border: 2px solid #ddd;
    transition: all 0.3s;
}

.photo-item img:hover {
    border-color: #3498db;
    transform: scale(1.05);
}

/* Стили для новой проверки */
.step-container {
    margin-bottom: 30px;
}

.template-load-options {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.template-option {
    flex: 1;
    min-width: 200px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    width: 100%;
}

.category-selection {
    margin: 20px 0;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-selection h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.items-selection-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item-selection {
    padding: 10px;
    background: #f5f7fa;
    border-radius: 6px;
    transition: all 0.3s;
}

.item-selection:hover {
    background: #e8f4f8;
}

.item-selection-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.item-selection-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.item-text {
    flex: 1;
    color: #2c3e50;
}

.subcategory-selection {
    margin-left: 20px;
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-left: 3px solid #3498db;
}

.subcategory-selection h5 {
    color: #3498db;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Стили для списка проверок */
.checks-list {
    margin-top: 20px;
}

.check-card {
    background: white;
    padding: 20px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s;
}

.check-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Стили для полезных ссылок */
.links-container {
    margin-top: 20px;
}

.link-card {
    background: white;
    padding: 20px;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.loading, .error, .info {
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    margin: 20px 0;
}

.loading {
    background: #e3f2fd;
    color: #1976d2;
}

.error {
    background: #ffebee;
    color: #c62828;
}

.info {
    background: #f5f5f5;
    color: #616161;
}

/* Модальное окно */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 20px;
    background: linear-gradient(135deg, #2c3e50, #4a6491);
    color: white;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2,
.modal-header h3 {
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #333;
}

.close-modal {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 20px;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Плавающие кнопки */
.floating-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
    bottom: 30px;
    right: 30px;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-btn-start {
    background-color: #27ae60;
}

.floating-btn-start:hover {
    background-color: #229954;
}

.floating-btn-save {
    background-color: #3498db;
    bottom: 110px;
}

.floating-btn-save:hover {
    background-color: #2980b9;
}

.floating-btn-add {
    background-color: #9b59b6;
    bottom: 30px;
}

.floating-btn-add:hover {
    background-color: #8e44ad;
}

/* Админ-панель */
.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.tab-btn {
    padding: 12px 20px;
    border: none;
    background: #f5f7fa;
    color: #7f8c8d;
    cursor: pointer;
    border-radius: 6px 6px 0 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #e8e8e8;
}

.tab-btn.active {
    background: #3498db;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.users-list,
.restaurants-list {
    max-height: 600px;
    overflow-y: auto;
}

.user-item,
.restaurant-item {
    transition: all 0.3s ease;
}

.user-item:hover,
.restaurant-item:hover {
    background: #f9f9f9;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.9rem;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    header {
        padding: 15px;
    }
    
    header h1 {
        font-size: 1.4rem;
    }
    
    .controls {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%;
        padding: 10px;
    }
    
    .form-card {
        padding: 15px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .category, .subcategory, .indicator {
        margin-bottom: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .floating-btn-start {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn-save {
        bottom: 80px;
        right: 20px;
    }
    
    .floating-btn-add {
        bottom: 140px;
        right: 20px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
        padding: 15px;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-value {
        font-size: 1.5rem;
    }
    
    .check-card {
        padding: 15px;
    }
    
    .main-menu {
        grid-template-columns: 1fr;
    }
    
    .menu-item {
        padding: 20px;
    }
    
    .menu-item-icon {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.2rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .form-input, .form-select {
        font-size: 16px; /* Предотвращает зум на iOS */
    }
    
    .indicator {
        padding: 10px;
    }
    
    .indicator-header, .indicator-footer {
        padding: 10px;
        flex-wrap: wrap;
    }
    
    .photo-preview img {
        width: 60px;
        height: 60px;
    }
}
