#settings-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 500px;
}

#settings-container h2 {
    color: #2d3436;
    margin-bottom: 20px;
}

.settings-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.settings-label {
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-align: left;
}

.theme-option {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.theme-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 10px 0;
}

.theme-buttons-container .theme-button {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 0 !important;
    height: 50px;
    box-sizing: border-box;
}

.theme-buttons-container .theme-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.theme-buttons-container .theme-button.active {
    border-color: #3498db;
    background-color: #3498db;
    color: white;
    margin: 0 !important;
}

/* Style dla konkretnych motywów */
.theme-buttons-container .theme-button.blocky {
    border-color: #2ecc71;
}

.theme-buttons-container .theme-button.blocky:hover,
.theme-buttons-container .theme-button.blocky.active {
    background-color: #2ecc71;
    color: white;
}

.theme-buttons-container .theme-button.dots {
    border-color: #3498db;
}

.theme-buttons-container .theme-button.dots:hover,
.theme-buttons-container .theme-button.dots.active {
    background-color: #3498db;
    color: white;
}

.theme-buttons-container .theme-button.hearts {
    border-color: #ff4d6d;
}

.theme-buttons-container .theme-button.hearts:hover,
.theme-buttons-container .theme-button.hearts.active {
    background-color: #ff4d6d;
    color: white;
}

.settings-section {
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.settings-section h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #2d3436;
}

#modal-language-select {
    font-size: 1rem;
    border: 1px solid #ddd;
}

/* Responsywność */
@media (max-width: 480px) {
    .theme-buttons-container {
        grid-template-columns: 1fr;
    }

    .theme-button {
        width: 100%;
    }

    #settings-container {
        width: 100%;
    }
}

.reset-button {
    background-color: #e74c3c !important;
    margin-top: 20px;
}

.back-button {
    margin-top: 10px;
}