/* Progress Bar Styles */
.wpird-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 18px 0 0 0;
    padding: 10px 0;
}
.wpird-progress-bar {
    width: 60px;
    height: 8px;
    border-radius: 6px;
    background: linear-gradient(90deg, #ff9966 0%, #ff5e62 50%, #d6249f 100%);
    animation: wpird-bar-move 1.2s linear infinite;
}
@keyframes wpird-bar-move {
    0% { opacity: 0.5; width: 20px; }
    50% { opacity: 1; width: 60px; }
    100% { opacity: 0.5; width: 20px; }
}
/* WP Instagram Reels Downloader Styles */
.wpird-box {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 32px 24px;
    text-align: center;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.wpird-box h2 {
    margin-bottom: 18px;
    color: #262626;
    font-size: 1.5rem;
    font-weight: 600;
}
.wpird-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.wpird-form input[type="url"] {
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border 0.2s;
    width: 90%;
    max-width: 420px;
}
.wpird-form input[type="url"]:focus {
    border-color: #3897f0;
}

.wpird-form select {
    padding: 10px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    width: 90%;
    max-width: 200px;
    background: #fafafa;
    margin-bottom: 4px;
    transition: border 0.2s;
}
.wpird-form select:focus {
    border-color: #3897f0;
}
.wpird-form button {
    width: 100%;
    padding: 14px 0;
    background: linear-gradient(90deg, #ff9966 0%, #ff5e62 50%, #d6249f 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(214,36,159,0.10), 0 1.5px 6px rgba(255,94,98,0.10);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    margin-top: 6px;
}
.wpird-form button:hover, .wpird-form button:focus {
    background: linear-gradient(90deg, #d6249f 0%, #ff5e62 50%, #ff9966 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(214,36,159,0.18), 0 2px 8px rgba(255,94,98,0.13);
    outline: none;
}
.wpird-result {
    margin-top: 18px;
    min-height: 32px;
}
.wpird-message {
    color: #3897f0;
    font-weight: 500;
    font-size: 1.1rem;
}
@media (max-width: 500px) {
    .wpird-box {
        padding: 18px 6px;
    }
    .wpird-box h2 {
        font-size: 1.1rem;
    }
}
