    /* --- Modal/Lightbox Styles --- */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        padding-top: 60px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0,0,0,0.9);
    }

    .modal-content {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 700px;
        height: auto;
        object-fit: contain;
        transition: transform 0.2s ease-in-out;
        transform-origin: center center;
    }

    #caption {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 700px;
        text-align: center;
        color: #ccc;
        padding: 10px 0;
        height: 150px;
    }

    .close {
        position: absolute;
        top: 15px;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: bold;
        transition: 0.3s;
        cursor: pointer;
    }

    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }

    @media only screen and (max-width: 768px) {
        .modal-content {
            width: 95%;
        }
        .close {
            font-size: 30px;
            top: 15px;
            right: 25px;
        }
    }

    .pagination a {
        padding: 8px 12px;
        text-decoration: none;
        border: 1px solid #ccc;
        color: #333;
        border-radius: 4px;
        margin: 0 2px;
    }

    .pagination a:hover {
        background-color: #f0f0f0;
    }

    .pagination strong {
        padding: 8px 12px;
        border: 1px solid #3b82f6;
        background-color: #3b82f6;
        color: white;
        border-radius: 4px;
    }

    .hidden {
        display: none !important;
    }

    #pagination-container {
        text-align: center;
        margin: 20px 0;
    }

    .pagination {
        display: inline-block;
    }

    .pagination a {
        margin: 0 5px;
        text-decoration: none;
    }

    /* Disney+ Hotstar Card Styles */
    .campaign-card {
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 16px;
        width: 100%;
        max-width: 320px;
        margin: 16px auto;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .card-header {
        position: relative;
        margin-bottom: 16px;
    }

    .header-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    /* Updated: Using actual checkbox */
    .platform-header-checkbox {
        width: 16px;
        height: 16px;
        cursor: pointer;
        position: relative;
    }


    .platform-image {
        width: 100%;
        height: 120px;
        /*background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);*/
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
        position: relative;
    }

    .disney-logo {
        color: white;
        font-size: 24px;
        font-weight: bold;
        text-align: center;
    }

    .platform-title {
        font-size: 16px;
        font-weight: 600;
        color: #1a1a1a;
        margin: 0 0 8px 0;
    }

    .platform-subtitle {
        font-size: 13px;
        color: #666;
        margin: 0 0 12px 0;
    }

    .ctr-badge {
        background: #e8f5e8;
        color: #2e7d32;
        padding: 2px 8px;
        border-radius: 12px;
        font-size: 11px;
        font-weight: 500;
        display: inline-block;
        margin-bottom: 12px;
    }

    .ad-formats {
        margin-bottom: 16px;
    }

    .formats-label {
        font-size: 12px;
        color: #666;
        margin-bottom: 6px;
    }

    .format-checkboxes {
        display: flex;
        gap: 12px;
        align-items: center;
    }

    .format-item {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 12px;
        color: #333;
    }

    /* Styling for native checkboxes */
    .format-item input[type="checkbox"] {
        width: 12px;
        height: 12px;
        border: 1px solid #ccc; /* Fallback for browsers that don't support accent-color */
        border-radius: 2px;
        cursor: pointer;
        accent-color: #4285f4; /* This will color the checkbox when checked */
    }

    .stats-section {
        margin-bottom: 16px;
    }

    .users-stat {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 12px;
        color: #333;
        margin-bottom: 8px;
    }

    .users-icon {
        width: 12px;
        height: 12px;
    }

    .pricing {
        margin-bottom: 16px;
    }

    .price-main {
        font-size: 14px;
        font-weight: 600;
        color: #2e7d32;
        margin-bottom: 2px;
    }

    .price-details {
        font-size: 11px;
        color: #666;
    }

    .budget-section {
        background: #f8f9fa;
        border-radius: 6px;
        padding: 12px;
        margin-bottom: 16px;
    }

    .budget-row {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        margin-bottom: 4px;
    }

    .budget-row:last-child {
        margin-bottom: 0;
    }

    .budget-label {
        color: #666;
    }

    .budget-value {
        color: #1a1a1a;
        font-weight: 500;
    }

    .optimize-section {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .optimize-btn {
        background: #4285f4;
        color: white;
        border: none;
        border-radius: 4px;
        padding: 8px 16px;
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        flex: 1;
    }

    .optimize-btn:hover {
        background: #3367d6;
    }

    .action-icons {
        display: flex;
        gap: 4px;
    }

    .action-icon {
        width: 28px;
        height: 28px;
        border: 1px solid #ddd;
        border-radius: 4px;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .action-icon:hover {
        background: #f5f5f5;
    }

    /* Ensure in-app ad card is properly styled */
    .in-app-ad-card {
        display: flex;
        justify-content: center;
        width: 100%;
        margin: 16px 0;
    }

    .in-app-ad-card .campaign-card {
        margin: 0;
    }
    .campaign-card {
  width: 300px; /* adjust as needed */
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.card-header {
  padding: 10px;
  text-align: center;
}

.platform-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px; /* adjust for desired height */
  overflow: hidden;
}

.platform-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
.image-card{
    width: 165%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}
