:root {
    --accent: #3BAA57; /* зелёный */
    --muted: #f7f7f7;
    --card: #ffffff;
}

body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: var(--muted);
}

.logo {
    font-weight: 700;
    color: var(--accent)
}

.muted {
    color: #6b7280
}

.active-thumb {
    opacity: 0.6;
    box-shadow: none;
    border: none;
}

.ck-editor__editable {
    height: 300px;
}

.photo-thumb {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-thumb .remove-photo {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #fff;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    padding: 3px;
    cursor: pointer;
    font-size: 1.1rem;
}

.photo-thumb .remove-photo:hover {
    background: rgba(0,0,0,0.9);
}

.file-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f8f9fa;
    border: 1px solid #e3e3e3;
    border-radius: 20px;
    font-size: 14px;
}

.file-pill i {
    font-size: 1.2rem;
}

.file-pill .remove-btn {
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.6;
}

.file-pill .remove-btn:hover {
    opacity: 1;
}

.remove-exist-photo {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 3px;
    cursor: pointer;
    font-size: 1.1rem;
}

.remove-exist-photo:hover {
    background: rgba(0, 0, 0, 0.9);
}

.remove-exist-btn {
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.6;
}

.remove-exist-btn:hover {
    opacity: 1;
}

.btn-close .btn-close-large {
    transform: scale(10); /* увеличивает крестик ровно в 2 раза */
}

footer {
    background: #fff;
    color: #fff;
    padding: 10px;
    #position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
