/* Code Minifier Styles */
#code-minifiers {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.minifier-container {
    background-color: rgba(51, 79, 78, 0.1);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.minifier-container h2 {
    text-align: center;
    margin-bottom: 10px;
}

.minifier-container p {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

.minifier-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

.minifier-btn {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.minifier-btn:hover {
    background-color: #0056b3;
}

.minifier-btn.active {
    background-color: #28a745;
}

.code-input, .code-output {
    margin-bottom: 20px;
}

.code-input label, .code-output label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.code-input textarea, .code-output textarea {
    width: 100%;
    height: 200px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: transparent;
    color: aqua;
    font-family: 'Courier New', monospace;
}

.controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.controls select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: transparent;
    color: aqua;
}

.process-btn {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.process-btn:hover {
    background-color: #218838;
}

.copy-btn {
    padding: 8px 15px;
    background-color: #17a2b8;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.copy-btn:hover {
    background-color: #138496;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid #007bff;
    min-width: 150px;
}

.stat-item:nth-child(3) {
    color: #28a745;
    font-weight: bold;
}