/* Basic styles for the tab navigation */
#iafwmc-plugin-tabs {
    display: flex;
    border-bottom: 1px solid #ccc;
    background-color: #c6c6c600; /* Subtle background color */
    /* margin-bottom: 15px;  */
    /* align-items: center; */
    flex-wrap: wrap;
}

.iafwmc-tab {
    padding: 9px 20px;
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: none;
    margin-right: 5px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s, border 0.3s;
    text-decoration: none;
    background-color: #0073aad4;
    color: white;
    min-width: 42px;
    text-align: center;
}

.iafwmc-tab-active {
    font-weight: bold; /* Makes the text bold */
    border: none; /* Removes any previous borders */
    /* background-color: #005785;  */
    color: #ffffff; /* Text color to match the background */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow for depth */
    transition: all 0.3s ease; /* Smooth transition for hover or state changes */
    padding-left: 15px; /* Adds space between the text and the left border */
    position: relative; /* Ensures the pseudo-element positions relative to this tab */
}

.iafwmc-tab-active::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #dfdfdf transparent;
    z-index: 1;
    bottom: -1%;
}




.iafwmc-tab:hover {
    background-color: #d1e8ff;
    color: #005b8a;
    border-color: #005b8a;
}

/* Styling for the tab content */
.iafwmc-tab-content {
    padding: 25px;
    border-left: 1px solid #ccc;
    border-top: none; /* Aligns border with tabs */
    background-color: #c6c6c600; /* Transparent background for tab content */
    /* box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1); */
    /* min-height: 500px;   */
    height: auto;  /* Height auto to adjust if content exceeds 500px */
    box-sizing: border-box;
    /* border-radius: 0 0 10px 10px;  */
}

/* Adjustments for better responsiveness */
@media (max-width: 768px) {
    .iafwmc-tab {
        padding: 10px 15px;
        font-size: 14px;
    }

    .iafwmc-tab-content {
        padding: 20px;
    }
}

.iafwmc-plugin-header {
    /* background-color: #005a8c; */
    /* color: #ffffff; */
    /* padding: 5px 6px; */
    float: right;
    font-size: 14px;
    text-align: left;
    border-radius: 8px;
    /* margin: 11px 0; */
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
    display: flex;
    align-items: center;
    margin-left: auto;
    display: flex;
    align-items: center;
}

.iafwmc-logo-container {
    background-image: url('../img/mailchimp-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 105px;
    height: 28px;
}

.iafwmc-plugin-logo {
    height: 24px; /* Adjust logo size */
    width: auto; /* Keep aspect ratio */
}

.iafwmc-plugin-header .iafwmc-main-message {
    font-weight: bold;
    font-size: 15px;
}

.iafwmc-plugin-header p {
    margin: 0;
}
.iafwmc-span-header
{
    font-size: 20px;
    font-weight: 500;
}