/* General Styles */
body {
    background-color: #f4f4f4;
}

/* Table Styles */
.table-reports, .contact-list-table, .template-list-table {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 40px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.table-header {
    background-color: #536dfe;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.badge-status {
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
}

/* DataTables Pagination & Search */
.dataTables_wrapper .dataTables_filter {
    float: right;
}

.dataTables_wrapper .dataTables_length, 
.dataTables_wrapper .dataTables_info {
    float: left;
}

.dataTables_wrapper .dataTables_paginate {
    float: right;
}

.pagination {
    margin-top: 20px;
    justify-content: center;
}

.items-per-page {
    width: 100px;
}

/* Loader Styles */
.loader-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Navbar Styling */
.navbar-custom {
    background-color: white;
    border-bottom: 2px solid #e5e5e5;
    font-weight: 600;
}

.navbar-custom .navbar-brand {
    font-weight: bold;
    font-size: 24px;
    color: white;
    background-color: #306EFF;
    padding: 8px 15px;
    border-radius: 25px;
}

.navbar-custom .nav-link {
    color: #6c757d;
    font-size: 16px;
    margin-right: 15px;
    position: relative;
}

.navbar-custom .nav-link.active,
.navbar-custom .nav-link:hover {
    color: #306EFF;
}

.navbar-custom .nav-link.active::after,
.navbar-custom .nav-link:hover::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -8px;
    left: 0;
    background-color: #306EFF;
    transition: width 0.3s ease;
}

.navbar-custom .icon {
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #6c757d;
    padding: 8px;
    margin-left: 15px;
    cursor: pointer;
}

.navbar-custom .icon:hover {
    background-color: #e9ecef;
    color: #306EFF;
}

/* Card Styling */
.card-header {
    background-color: #455845;
    color: #6c757d;
    font-weight: bold;
}

/* Pagination Link Styling */
.page-link {
    color: #092150;
}

/* Footer Styling */
.footer {
    background-color: black;
    color: white;
    padding: 2px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Full-Screen Loader Styles */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

/* Toast Styles */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 300px;
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    transform: translateY(-20px);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.bg-success {
    background-color: #28a745 !important;
}

.bg-error {
    background-color: #dc3545 !important;
}

.toast-body {
    color: #fff;
}

/* SMS Container */
.container.sendsms {
    max-width: 600px;
    margin-top: 50px;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Account Info Card */
.account-info-card {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 50px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Action Icons */
.action-icons i {
    font-size: 20px;
    cursor: pointer;
}

.action-icons i.view-icon {
    color: #536dfe;
}

.action-icons i.delete-icon {
    color: #f44336;
}

/* Buttons */
.add-contact-btn, .add-template-btn, .btn-create {
    background-color: #536dfe;
    color: #fff;
    border-radius: 20px;
    padding: 10px 20px;
    float: right;
}

/* Style for the form  */


/* Style for the label */
.form-label {
    font-weight: bold;
    color: black; /* Label color */
}

/* Style for the example text below the input field */
.form-text.text-muted {
    font-size: 0.9rem;
    color: #999; /* Example text color */
}
   