/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: url('/theme/image/background.svg') no-repeat center center fixed;
    background-size: cover;
    background-color: #f0f3fb;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    padding-top: 70px;
}

h1 {
    font-family: 'Lora', serif !important;
    color: #274c77;
    margin-top: 25px;
    font-size: 1.8rem;
    padding: 10px;
    text-align: center;
    
}

.container {
    width: 90%;
    background: transparent;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border: 0.8px solid #a3cef1;
}

/* Minifier Section */
.minifier-section {
    background: transparent;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.01);
    margin: 10px auto;
}

textarea {
    width: 100%;
    height: 220px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
    margin-bottom: 10px;
    resize: vertical;
}

button {
    background: #274c77;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
    margin-right: 10px;
}

button:hover {
    background:#a3cef1;
}

button:focus {
    outline: 2px solid #a3cef1;
    outline-offset: 2px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 5px;
    margin-top: 20px;
    overflow: hidden;
    display: none;
}

.progress {
    width: 0;
    height: 100%;
    background: #6096ba;
    border-radius: 5px;
    transition: width 0.3s ease;
}

.output {
    width: 90%;
    height: 350px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
    margin-top: 20px;
    resize: vertical;
    display: none;
}

.actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

/* Toggle Switch */
.toggle-switch {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.toggle-switch select {
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 16px;
    background: #fff;
    color: #333;
}

/* Sections */
.intro-section, .features-section, .how-to-section {
    background: transparent;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
}

h2 {
    color: #274c77;
    margin-bottom: 20px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.card {
    background: #f9f9f9;
    padding: 20px;
    width: 50%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(25% - 20px);
    text-align: center;
}

.card h3 {
    margin: 0 0 10px;
    color: #274c77;
}

card i {
    color: #6096ba;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cards {
        flex-direction: column;
    }

    .card {
        width: 90%;
        flex: 1 1 100%;
    }
}
 