.ymp3-frontend-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

.ymp3-converter-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ymp3-title {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 28px;
    text-align: center;
}

.ymp3-description {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.ymp3-form-group {
    margin-bottom: 20px;
}

.ymp3-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.ymp3-input,
.ymp3-select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.ymp3-input:focus,
.ymp3-select:focus {
    outline: none;
    border-color: #2271b1;
}

.ymp3-button {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.ymp3-button-primary {
    background: #2271b1;
    color: #fff;
    width: 100%;
}

.ymp3-button-primary:hover {
    background: #135e96;
}

.ymp3-button-success {
    background: #00a32a;
    color: #fff;
}

.ymp3-button-success:hover {
    background: #008a20;
}

.ymp3-status-box {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.ymp3-status-content h3 {
    margin-top: 0;
    color: #333;
}

.ymp3-status-text {
    margin: 10px 0;
    color: #666;
    font-size: 14px;
}

.ymp3-progress-bar {
    width: 100%;
    height: 20px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin: 15px 0;
}

.ymp3-progress-fill {
    height: 100%;
    background: #2271b1;
    width: 0%;
    transition: width 0.3s;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.ymp3-download-section {
    margin-top: 20px;
    text-align: center;
}

.ymp3-success-message {
    color: #00a32a;
    font-weight: 600;
    margin-bottom: 15px;
}

.ymp3-download-link {
    display: inline-block;
}

