h3.email-automation-subheader {
    font-size: 20px;
    text-transform: capitalize;
    margin-top: 12px;
    font-weight: 400;
    color: #2e344d;
}

.btn-slim-page-back {
    border: none !important;
    font-size: 28px;
    margin: 0px;
    margin-right: 8px;
    color: #2e344d;
}

.tab-container-in-header {
    text-align: right;
    margin-top: 5px;
}

    .tab-container-in-header .nav {
        display: inline-block;
    }

.email-template-tab .progress-header {
    border-radius: 10px;
    height: 5px;
    background: linear-gradient(90deg, #9f44d3, #6a82fb, #4f4f7f, #3a7bd5, #00d2ff, #9f44d3);
    background-size: 200% 100%;
    animation: gradientAnimation 5s ease infinite;
    box-shadow: 4px 0px 15px #885fe4;
}

.ai-email-wrapper {
    border-radius: 10px;
    overflow: hidden;
}

.ai-email-wrapper .chat-room-wrapper {
    background: #efefef;
    margin-bottom: 23px;
    border-right: 5px solid #dfdfdf;
}

@keyframes gradientAnimation {
    0% {
        background-position: 200% 0%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.task-list .fa-check-circle-o {
    color: #ccc;
}

.task-list .fa-check-circle-o.complete {
    color: green !important;
}

.ai-email-wrapper .panel {
    padding: 0px;
}

.email-flex-outer {
    max-height: calc(100vh - 250px);
}

.email-editor-container-wrapper {
    background-color: #333 !important;
} 

.email-editor-container {
    position: relative;
    overflow: hidden;
    transition: opacity 0.5s;
}

    .email-editor-container.generating {
        opacity: 0.7;
    }

    .email-editor-container.generating::after {
        content: '';
        position: absolute;
        top: 0;
        left: -150%; /* Start the animation off-screen */
        width: 50%;
        height: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
        animation: shimmer 3s infinite;
        z-index: 100;
    }

@keyframes shimmer {
    0% {
        left: -150%;
    }

    50% {
        left: 150%;
    }

    100% {
        left: 150%;
    }
}

.email-automation-tool {
    padding: 0px 6px 6px;
    margin-bottom: 8px;
}

    .email-automation-tool .btn-tool-main {
        border-radius: 5px;
        border: none;
        margin-right: 10px;
        padding-left: 22px;
        padding-right: 22px;
        font-size: 14px;
        background: #efefef;
    }

        .email-automation-tool .btn-tool-main .fa {
            margin-right: 6px;
        }

        .email-automation-tool .btn-tool-main.btn-primary {
            border-radius: 5px;
            border: none;
            margin-right: 10px;
            background: var(--primary);
        }

    .email-automation-tool label {
        margin-top: 5px;
        margin-right: 18px;
        font-weight: 500;
        color: #333;
        margin-left: 10px;
        font-size: 15px;
    }

.email-automation-tool .form-group {
    margin-bottom: 0px;
}

    .email-automation-tool .spacer {
        border-left: 2px solid #d5d5d5;
        margin-left: 20px;
        margin-right: 8px;
        box-shadow: 1px 0px 3px #d9d9d9;
    }

.audience-table-header {
    font-size: 22px;
    color: #333;
    font-weight: 400;
    margin: 25px 0px 5px;
}

.audience-tool-wrapper {
    background: #efefef;
    padding: 10px;
    border-radius: 10px;
}

.simple-link-button a {
    color: #333 !important;
    margin: 8px 6px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
}

    .simple-link-button a:hover {
        font-weight: bold !important;
    }

.prospect-component {
    background-color: white;
    background-repeat: no-repeat;
    background-size: cover;
}

.prospect-search-wrapper {
    width: 50%;
    margin-top: -10%;
    background: #ffffffCC;
}

    .prospect-search-wrapper h3 {
        font-weight: 400;
        font-size: 26px;
        color: #333;
        text-align: center;
        margin: 30px;
    }

    .prospect-search-wrapper .search-wrapper-box {
        border: 1px solid #ddd;
        padding: 15px;
        border-radius: 18px;
    }

    .prospect-search-wrapper .wrapper-box-tool {
        margin-bottom: 15px;
    }

    .prospect-search-wrapper .select2-container--default .select2-selection--single {
        border: 1px solid #555;
    }

    .prospect-search-wrapper .tab-mode {
        color: #333;
        padding: 10px 25px;
    }

        .prospect-search-wrapper .tab-mode.selected {
            background-color: #eee;
            border-radius: 20px;
            font-weight: bold;
        }

    .prospect-search-wrapper .select2-selection__rendered {
        font-size: 16px;
    }

    .prospect-search-wrapper .select2-selection {
        height: 40px !important;
    }

    .prospect-search-wrapper .select2-container--default .select2-selection--single .select2-selection__placeholder {
        color: #666;
        font-size: 15px;
    }

.email-image-wrapper {
    height: 300px;
    padding: 5px;
    background-color: #fafafa;
}

.email-image-wrapper img {
    height: 100%;
    border-radius: 5px;
}