/* bd-sub-manager-frontend.css */
.bd-sub-plans-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.bd-sub-plan-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 250px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.bd-sub-plan-card h3 {
    margin: 0 0 10px;
    font-size: 1.5em;
    color: #333;
}

.bd-sub-plan-card .price {
    font-size: 2em;
    font-weight: bold;
    color: #6c63ff;
    margin-bottom: 20px;
}

.bd-sub-buy-btn {
    background-color: #6c63ff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    text-decoration: none;
    display: inline-block;
}

.bd-sub-buy-btn:hover {
    background-color: #5a54d1;
}

/* Modal for manual payment */
.bd-sub-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.bd-sub-modal-content {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    max-width: 500px;
    width: 90%;
}

.bd-sub-modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.bd-sub-user-dashboard-container {
    padding: 20px;
    font-family: Arial, sans-serif;
}

.bd-sub-profile-card, .bd-sub-subscription-info, .bd-sub-no-subscription {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.status-badge {
    padding: 4px 8px;
    border-radius: 4px;
    color: white;
    font-weight: bold;
}

.status-active { background-color: #28a745; }
.status-pending { background-color: #ffc107; }
.status-expired { background-color: #dc3545; }

/* Custom Login/Register form styling */
.bd-sub-form-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.bd-sub-form-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.bd-sub-form-container p {
    margin-bottom: 20px;
}

.bd-sub-form-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.bd-sub-form-container input[type="text"],
.bd-sub-form-container input[type="email"],
.bd-sub-form-container input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 16px;
}

.bd-sub-form-container button {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #6c63ff;
    color: white;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.bd-sub-form-container button:hover {
    background-color: #5a54d1;
}

.bd-sub-message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 1em;
}

.bd-sub-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.bd-sub-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.bd-sub-login-link, .bd-sub-register-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #6c63ff;
    text-decoration: none;
}

