﻿/* General layout */
.ads-page {
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}
.heading h2 {
    color: #d84315;
    font-size: 28px;
    font-weight: bold;
}
.upload_btn {
    background-color: #ffb800;
    border: none;
    padding: 10px 20px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-left: 20px;
    margin-bottom: 10px;
    float: right;
    margin-top: -60px;
}
/* Flex container for filters and buttons */
.filter-button-container {
    display: flex;
    justify-content: space-between; /* Align filters left, buttons right */
    align-items: center;
    margin-bottom: 20px;
}

/* Influencer actions (Register, Sign In) aligned to the right */
.influencer-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

    .influencer-actions button {
        background-color: #ffb800;
        border: none;
        padding: 10px 20px;
        color: white;
        font-size: 16px;
        cursor: pointer;
        border-radius: 5px;
        margin-left: 20px;
    }

        .influencer-actions button:hover {
            background-color: #ff9900;
        }

/* Filter section */
.filter-section {
    margin-bottom: 0;
}

    .filter-section select {
        padding: 10px;
        font-size: 16px;
        margin: 0 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

/* Ads container */
.ads-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Set to 5 videos per row */
    gap: 20px;
}

.ad-video {
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    .ad-video video {
        width: 100%; /* Ensure video takes full width of its container */
        height: 200px; /* Adjust the height to make it medium size */
        border-radius: 5px;
        margin-bottom: 10px;
    }
