/* Основные стили для Minecraft Skin Plugin */
.minecraft-skin-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.minecraft-skin-container h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 2.5em;
}

.minecraft-skin-container h2 {
    color: #444;
    margin-bottom: 20px;
    font-size: 1.8em;
    border-bottom: 2px solid #1b7b6b;
    padding-bottom: 10px;
}

/* Секции загрузки и просмотра */
.upload-section, .preview-section {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Стили для формы */
.form-container {
    max-width: 300px;
    margin: 0 auto;
}

/* Стили для контейнера элемента "Выберите Скин" и "Загрузить" */
.input-file {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

/* Стили для элементов "Выберите Скин" и "Загрузить" */
.input-file-label {
    font-size: 18px;
    color: #fff;
    background-color: #3b3b3b;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.input-file-label:hover {
    background-color: #1b7b6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Скрытые элементы */
#actual-btn, #skinButton {
    display: none;
}

/* Стили для вывода сообщений */
.echoskins {
    font-size: 16px;
    margin-top: 20px;
    text-align: center;
}

/* Стили для 3D просмотра скина */
.skin-preview-container {
    text-align: center;
    margin: 20px auto;
    border: 2px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

/* Адаптивность */
@media (max-width: 768px) {
    .minecraft-skin-container {
        padding: 15px;
    }
    
    .minecraft-skin-container h1 {
        font-size: 2em;
    }
    
    .minecraft-skin-container h2 {
        font-size: 1.5em;
    }
    
    .upload-section, .preview-section {
        padding: 20px;
    }
}

/* Анимации */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.upload-section, .preview-section {
    animation: fadeIn 0.5s ease-out;
}