.mcd-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.mcd-modal {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.mcd-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.mcd-download-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
    width: 100%;
}

.mcd-download-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.mcd-info-text {
    margin: 10px 0;
    color: #666;
    text-align: center;
}

.mcd-limit-info {
    color: #ff6b6b;
    font-weight: bold;
}

.mcd-time-left {
    color: #ff9e2c;
    font-weight: bold;
}

.download-label {
    margin-left: 10px;
    cursor: pointer;
}

.mcd-download-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

/* Modal içeriği için temel stiller */
.mcd-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.mcd-modal {
    background: white;
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.mcd-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.mcd-download-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 15px;
}

.mcd-download-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.manga-modal-header {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    margin: -20px -20px 20px -20px;
    border-radius: 5px 5px 0 0;
}

.manga-modal-header h4 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

/* VIP uyarı mesajı için özel stiller */
.mcd-vip-required {
    text-align: center;
    padding: 20px;
    display: none;
}

.mcd-vip-required i.fas {
    font-size: 48px;
    color: #f1c40f;
    margin-bottom: 15px;
    display: block;
}

.mcd-vip-required p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.mcd-become-vip-btn {
    display: inline-block;
    background-color: #f1c40f;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.mcd-become-vip-btn:hover {
    background-color: #f39c12;
}