
        body {
            font-family: "Segoe UI", sans-serif;
        }
        .hero {
            background: linear-gradient(135deg, #1c1c1c, #007bff);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        .btn-affiliate {
            margin-top: 20px;
            font-weight: bold;
        }
        
/* Custom Modal Styles */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: hidden; /* Prevent background page scrolling */
}

.custom-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    max-height: 60%; /* Prevent the modal from growing too large */
    overflow-y: auto; /* Enable scrolling within the modal */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    font-family: 'Segoe UI', sans-serif;
}

.custom-modal-content-create {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    max-height: 70%; /* Prevent the modal from growing too large */
    overflow-y: auto; /* Enable scrolling within the modal */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    font-family: 'Segoe UI', sans-serif;
}

.custom-close-btn {
    color: #aaa;
    font-size: 24px;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
}

.custom-close-btn:hover {
    color: #000;
}

.custom-modal-content h3 {
    margin-bottom: 20px;
    color: #333;
}

.custom-modal-content label {
    display: block;
    margin: 10px 0 5px;
    font-weight: 600;
    color: #333;
}

.custom-modal-content input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.helper-text {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 15px;
}

.custom-submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.custom-submit-btn:hover {
    background-color: #0056b3;
}

/* For small screens, reduce modal margins and ensure proper scaling */
@media (max-width: 576px) {
    .custom-modal-content {
        margin: 5% auto;
        width: 90%;
        max-width: 90%;
        padding: 20px;
    }

    .custom-close-btn {
        font-size: 20px;
    }

    .custom-submit-btn {
        font-size: 14px;
        padding: 8px;
    }
}

.affiliate-steps {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #ffffffaa;
    padding: 20px;
    border-radius: 8px;
    color: #f8f9fa;
    font-size: 1.05rem;
}
.affiliate-steps ol {
    margin: 0;
    padding-left: 1rem;
}
.affiliate-steps li {
    margin-bottom: 10px;
}