.static_page ol{
	list-style: auto;
	padding-left: 2rem;
}
.static_page ul{
	list-style: disc;
	padding-left: 2rem;
}
.static_page ul li,
.static_page ol li{
	display: list-item;
}
.privacy{
	text-decoration: underline;
}
.privacy:hover{
	color:var(--color-blue);
}
/* Стили для иконок файлов */
.file-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.file-icon.png-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23666"><path d="M13 9h5.5L13 3.5V9M6 2h8l6 6v12a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V4c0-1.11.89-2 2-2m.12 14.5h3.38l1.5 2.5h2.25L9 12l-2.88 4.5m6.5-1.5h-3.38l-1-1.5h-1.75l3.38-5.5 2.75 4.5z"/></svg>');
}

.file-icon.svg-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23666"><path d="M21 7v10.88c1.35-.59 2.34-1.88 2.34-3.44 0-2.07-1.68-3.75-3.75-3.75-1.16 0-2.18.53-2.85 1.33L9.83 8.47l-.93 3.21c.54.23 1.03.56 1.44.97l1.58-1.09.93 3.13-2.56 1.73c-.03.3-.09.59-.17.87l2.56 1.73-.93 3.13-2.79-1.88c-.5.28-1.06.43-1.64.43-1.97 0-3.57-1.6-3.57-3.57 0-1.58 1.03-2.92 2.46-3.4V7c0-1.1.9-2 2-2h12a2 2 0 0 1 2 2z"/></svg>');
}

.file-icon.txt-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="%23666"><path d="M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8l-6-6m-4 18H7v-2h3v2m4-4H7v-2h7v2m0-4H7v-2h7v2m-1-5V3.5L18.5 9H13z"/></svg>');
}

/* Улучшенные стили для отображения файлов */
.upload-file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease;
}

.upload-file-item:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.file-name {
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.file-size {
    font-size: 12px;
    color: #6c757d;
    white-space: nowrap;
}

.remove-file {
    background: none;
    border: none;
    font-size: 20px;
    color: #dc3545;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.remove-file:hover {
    background: #dc3545;
    color: white;
}

.upload-visible {
    margin-top: 15px;
}