body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #18191f;
    color: #fff;
    line-height: 1.6;
    padding: 0;
    overflow-x: hidden;
}

.alert-danger {
    --bs-alert-bg: #ff4d4d;
    --bs-alert-color: #fff;    
    text-align:center;
    border:0px;
    padding:0px!important;    
}

.alert-success {
    --bs-alert-bg: #2b9d26;
    --bs-alert-color: #fff;
    text-align: center;
    border: 0px;
    padding: 0px !important;
}

.navbar-brand {
    font-weight: 900;
    color: #FFF;
    font-size: 3rem;
    letter-spacing: -1px;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pointer{
    cursor: pointer;
    }
.clamo_logo{
    width:150px!important;
    height:54px!important;
}
.sidebar {
    width: 250px;
    height: 100vh;
    position: sticky;
    top: 0;
    background-color: #1e90ff;
}

.padding{
    padding: 50px;
}

.topMargin {
    margin-top: 10px;
}

.topMarginDouble {
    margin-top: 30px;
}

.thumbImage-settings {
    max-width: 150px;
    max-height: 150px;
    display: block;
    width: 200px !important;
    height: 200px !important;
    margin: 10px;
}

.thumbImage-settings-bookCover {    
    display: block;
    width: 100px !important;
    height: 150px !important;
    margin: 10px;
    border-radius:0!important;
}

.thumbImage-company-settings {
    max-width: 150px;
    max-height: 150px;
    display: block;
    width: 200px !important;
    height: 200px !important;
    margin: 10px;
    border-radius:25px!important;
}

.addeditSmallImage {
    width: 44px !important;
    height: 64px !important;
    cursor: pointer !important;
    border-radius:3px!important;
}

.addeditBigImage {
    width: 205px !important;
    height: 300px !important;
    border-radius: 10px !important;    
}

.image-gradient-bg {
    /*background: linear-gradient(to left, #253246, #263046, #253246);*/
    color: white; /* Optional: Ensures text is visible */
    padding: 20px; /* Optional: Adds spacing */
}


header {
    position: relative;
    text-align: center;
}

    header img {
        width: 100%;
        height: auto;
        display: block;
    }

.header-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px;
}

    .header-overlay h1 {
        font-size: 3em;
        color: #1e90ff;
        margin: 20px 0 10px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .header-overlay p {
        font-size: 1.2em;
        margin: 10px 0 20px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    .header-overlay .button {
        background-color: #ff7043;
        padding: 15px 30px;
        color: white;
        border-radius: 5px;
        font-weight: 600;
        text-transform: uppercase;
        text-decoration: none;
        display: inline-block;
        transition: background-color 0.3s ease;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

        .header-overlay .button:hover {
            background-color: #f57c00;
        }

.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px 20px;
}

.form-container {
    background-color: #2c2c3e;
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
}

    .form-container label {
        font-weight: 500;
        display: block;
        margin-bottom: 5px;
    }

    .form-container input, .form-container select {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #444;
        border-radius: 5px;
        background-color: #1e1e2f;
        color: #fff;
    }

        .form-container input::placeholder {
            color: #888;
        }

    .form-container .button {
        width: 100%;
        text-align: center;
    }

.features-section {
    background-color: #1e1e2f;
    padding: 50px 20px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.feature-item {
    background-color: #2c2c3e;
    padding: 20px;
    border-radius: 8px;
}

    .feature-item img {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
        border-radius: 8px;
    }

    .feature-item h3 {
        color: #1e90ff;
    }

.play-button {
    position: relative;
    cursor: pointer;
}

    .play-button img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .play-button::after {
        content: "\25B6 Play";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        font-size: 1.5em;
        padding: 10px 20px;
        border-radius: 50px;
        text-align: center;
    }

.testimonial-section {
    background-color: #2c2c3e;
    padding: 50px 20px;
    text-align: center;
}

.testimonial {
    margin: 20px 0;
}

    .testimonial img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-bottom: 10px;
    }

.calls-section {
    padding: 50px 20px;
    text-align: center;
}

.calls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

footer {
    background-color: #000;
    text-align: center;
    padding: 20px;
    color: #888;
}

    footer a {
        color: #1e90ff;
        text-decoration: none;
    }


.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}

    .navigation img {
        height: 40px;
    }

    .navigation .nav-buttons {
        display: flex;
        gap: 10px;
    }

        .navigation .nav-buttons a {
            color: #fff;
            background-color: #1e90ff;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            text-transform: uppercase;
            transition: background-color 0.3s ease;
        }

            .navigation .nav-buttons a:hover {
                background-color: #0066cc;
            }

button.logoutbutton {
    background-color: #1e90ff !important;
    color: #fff;
    gap: 10px;
    padding: 10px 20px;
    border: 0px;
    border-radius: 5px;
    display: flex;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-go-back {
    color: white;
    background-color: black;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
}

    .btn-go-back i,
    .btn-go-back-transparent i {
        margin-right: 0.5rem;
    }

.btn-go-back-transparent {
    color: white;
    background-color: transparent;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    display: inline-flex;
    align-items: center;
}

h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #1e90ff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.card {
    background-color: #253246; /*#2c2c3e;*/
    border: none;
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    margin-bottom: 20px;
    width: 100%;
    height: 100%;
}
.actioncard {
    background-color: lightskyblue;
    border: none;
    border-radius: 8px;
    padding: 15px;
    color: #fff;
    margin-bottom: 20px;
    width: 100%;
    height: 100%;
}

.action-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-primary {
    background-color: #1e90ff;
    border: none;
}

    .btn-primary:hover {
        background-color: #0066cc;
    }

.btn-danger {
    background-color: #ff4d4d;
}

    .btn-danger:hover {
        background-color: #e60000;
    }

.add-action {
    border: 2px dashed #444;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
}

    .add-action:hover {
        background-color: #2c2c3e;
    }

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

    .modal.active {
        display: flex;
    }

.modal-content {
    background-color: #1e1e2f;
    padding: 20px;
    border-radius: 8px;
    width: 85%;
}

.form-text {
    color: #777;
}

.form-label {
    color: #fff;
}

input::placeholder,
textarea::placeholder {
    color: #555 !important;
    opacity: 1; /* Firefox */
}

input,
textarea::-ms-input-placeholder { /* Edge 12-18 */
    color: red !important;
}

.form-control,
.form-select {
    background-color: lightskyblue; /*#2c2c3e*/
    color: #000;
    border: 1px solid #444;
}

    .form-control:focus,
    .form-select:focus {
        background-color: #2c2c3e;
        color: #fff;
        border-color: #1e90ff;
        box-shadow: 0 0 0 0.25rem rgba(30, 144, 255, 0.25);
    }

/* Transcriptions */

.transcriptionbox {
    max-height: 400px;
    overflow-y: auto;
    padding: 1rem;
    background-color: #f0f0f0;
    border-radius:25px;
}


/* agent setup step */
.step {
    display: none;
}

    .step.active {
        display: block;
    }

h1, h2, h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    color: #1e90ff;
    text-transform: uppercase;
}

label {
    font-weight: 500;
}

/* create agent */

.card-text {
    font-size: 1rem;
    color: #d1d1d1;
}

.card-text-callproject {
    color: #fff;
}

    .card {
        text-align: left;
        position: relative;
    }

    .card img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin-bottom: 10px;
    }

.callproject-dates {
    color:#fff;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.card-title-callprojects {
    font-size: 1.5rem;
    font-weight: 600;
    color:#fff;
    font-weight:bold;
}

.badge {
    font-size: 0.9rem;
    padding: 0.5em 0.75em;
    border-radius: 0.5em;
}

    .badge.inbound {
        background-color: #28a745;
    }

    .badge.outbound {
        background-color: #1e90ff;
    }

    .badge.calls {
        background-color: #ffc107;
        color: #000;
    }

    .badge.widget {
        background-color: #6c757d;
    }

/* workspace */

.dropdown-menu {
    background-color: #2c2c3e;
    border: none;
}

.dropdown-item {
    color: #fff;
}

    .dropdown-item:hover {
        background-color: #1e90ff;
        color: #fff;
    }

.table {
    color: #fff !important;
    --bs-table-bg: #253246; /*#2c2c3e !important;*/
    --bs-table-color: #fff;
}

    .table th, .table td {
        vertical-align: middle;
    }

    .table tr {
        border: 3px solid transparent;
    }

.badge.superadmin {
    background-color: #1e90ff;
}

.badge.user {
    background-color: #6c757d;
}

.badge.guest {
    background-color: #28a745;
}

.status.active {
    color: #fff;
    background-color: #1e90ff;
    font-weight: bold;
    border-radius: 5px;
    padding: 5px;
    width:85px!important;
}

.status.inactive {
    color: #fff;
    background-color: #ff4d4d;
    font-weight: bold;
    border-radius: 5px;
    padding: 5px;
    width: 85px !important;
}

.action-buttons button {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

    .action-buttons button i {
        font-size: 24px; /* Adjust size to make icons bigger */
        font-weight: 600; /* Make the icons bold */
    }

/* agent selection */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.agentCard {
    background-color: lightskyblue; /* #2c2c3e;*/
    border: none;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    position: relative;    
}

    .agentCard img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin-bottom: 10px;
    }

.agentCard-title {
    font-size: 16px;
    font-weight: 500;
    margin: 5px 0;
    color: #fff;
}


.card-title {
    font-size: 16px;
    font-weight: 500;
    margin: 5px 0;
    color: #fff;
}

.status {
    font-size: 14px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
}

    .status.outbound {
        background-color: #1e90ff;
        color: #fff;
        width: 85px !important;
        padding:5px;
        border-radius:5px;
    }

    .status.inbound {
        background-color: #ff4d4d;
        color: #fff;
        width: 85px !important;
        padding: 5px;
        border-radius: 5px;
    }

.action-buttons {
    margin-top: 10px; /* Adds space between badge and buttons */
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between buttons */
}

.add-card {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1e90ff;
    color: #fff;
    font-size: 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .add-card:hover {
        background-color: #0066cc;
    }

.btn-secondary {
    --bs-btn-bg: #424f63;
}

.add-customerCard {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1e90ff;
    color: #fff;
    font-size: 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    width:200px;  
    min-height:200px;
}

.customerCard {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: lightskyblue;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 200px;
    cursor: pointer;
}

.customerImage-container {
    width: 100%;
    padding-top: 100%; /* Keeps the div square */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #fff;
}

    .customerImage-container img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
/* Striped Tables */

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #253246; /* Light gray */
    color:#fff;
}

/* Custom striped table */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #f2f2f2; /* Lighter gray */
    color: #fff;
}

.table-striped tbody tr:nth-of-type(even) {
    background-color: #ffffff; /* Keep even rows white */
    color: #fff;
}

/* Optional: Add hover effect for better UI */
.table-hover tbody tr:hover {
    background-color: #e0e0e0; /* Light gray when hovering */
    color: #fff;
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
    color: #aaa;
}

/* Striped Tables End */
/* Tabs */
.nav-tabs {
    border-bottom: 5px solid #1e90ff;
    display: flex;
    justify-content: left;
    margin-bottom:10px;
}

    .nav-tabs .nav-link {
        color: #fff;
        background-color: #2c2c3e;
        border: none;
        padding: 15px 20px;
        margin: 0 5px;
        border-radius: 5px 5px 0 0;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

        .nav-tabs .nav-link.active {
            background-color: #1e90ff;
            color: #fff;
        }

.tab-content {
    /*background-color: #2c2c3e;*/
    padding: 20px;
    border-radius: 5px;
    text-align: left;
}


/* Put this in your CSS file or inside a <style> tag */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-icon {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* End Tabs */


/* ===== overlay – blocks clicks on underlying UI ===== */
.progress-overlay {
    position: fixed;
    inset: 0; /* top:0 right:0 bottom:0 left:0 */
    background: rgba(0, 0, 0, 0.5); /* 50 % opacity black */
    z-index: 999; /* sits above everything else */
    display: flex;
    align-items: center; /* vertical centering */
    justify-content: center; /* horizontal centering */
}

/* ===== panel ===== */
.progress-panel {
    width: 400px; /* fixed width */
    max-width: 90vw; /* don’t overflow on small screens */
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    background: #fff;
    color: #212529!important; /* dark text regardless of theme */
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,.15);
    z-index: 1000; /* one step above overlay */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

    /* keep “Completed” badge readable */
    .progress-panel .badge {
        color: #fff!important;
    }
