@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    background: linear-gradient(135deg, #059669 0%, #fbbf24 100%);
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

#network-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


/* Add this to your CSS */
.vision-editable-list-container .dropdown {
    visibility: visible; /* Ensure dropdown is always visible */
}

.vision-editable-list-container li {
    position: relative;
    min-height: 30px; /* Ensures the list item has some height even if empty */
}

.vision-editable-list-container .dropdown-icon {
    z-index: 2; /* Ensure the dropdown icon is on top of the button */
}

.brand-analytics-button {
    position: relative;
    z-index: 0; /* Ensure the button stays below the dropdown */
}


#zoom-slider-container {
    display: flex;
    align-items: center;
    padding-bottom: 7px;
}


.move-down-btn:hover {
    color: #007bff;
}

#zoom-slider {
    margin-left: 10px;
}


#embed-btn {
    width: 400px; /* Adjust the width as needed */
        vertical-align: middle;
        background-color: #667eea;
}

.Google {
    width: 95% !important;
}


.module-title {
    color: white !important;
    text-align: center;
    font-size: 2em; /* Adjust size as needed */
    font-weight: bold;
    background-color: #667eea;
    padding: 0px 0; /* Adjust padding as needed */
    margin: 0; /* Remove default margins */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px; /* Adjust height as needed */
}



.sidebar {
    width: 250px;
    height: 100vh;
    background-color: #1a1a2e;
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    padding-bottom: 20px; /* Add padding at the bottom */
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto; /* Add vertical scroll if needed */
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none;  /* For Internet Explorer and Edge */
    transition: width 0.3s ease;
    z-index: 10000;
}

.sidebar.collapsed {
    width: 70px;
}

.sidebar.collapsed .logo,
.sidebar.collapsed .sidebar-menu li a span,
.sidebar.collapsed .analytics-hub-button span {
    display: none;
}

.sidebar.collapsed .sidebar-menu li a {
    justify-content: center;
    padding: 15px;
}

.sidebar.collapsed .sidebar-menu li a i {
    margin-right: 0;
    margin-left: 0;
    padding: 0;
    font-size: 20px;
    position: relative;
    left: 0;
    right: 0;
}

.sidebar.collapsed .analytics-hub-button {
    padding: 15px 0;
    justify-content: center;
}

.sidebar::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}

.sidebar-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

/* User Profile Section */
.user-profile-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    gap: 12px;
}

.user-profile-section:hover .user-avatar {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.user-initial {
    font-size: 16px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.user-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #dc3545;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border: 2px solid #001f3f;
    z-index: 10;
    min-width: 18px;
    padding: 0 4px;
    box-sizing: border-box;
    line-height: 1;
}

.user-name {
    font-size: 16px;
    color: white;
    text-align: left;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.user-name strong {
    font-weight: 600;
}

/* User Profile Dropdown */
.user-profile-dropdown {
    position: absolute;
    top: 100%;
    left: 15px;
    background-color: #001f3f;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 10000;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.user-profile-dropdown.show {
    opacity: 1;
    visibility: visible;
}

.user-profile-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #001f3f;
}

.user-profile-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: background-color 0.2s ease;
    border-radius: 6px;
    margin: 5px;
}

.user-profile-dropdown .dropdown-item:hover {
    background-color: #0575ed;
}

.user-profile-dropdown .dropdown-item i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Collapsed state for user profile */
.sidebar.collapsed .user-profile-section {
    padding: 10px 0;
    flex-direction: column;
    gap: 0;
    justify-content: center;
}

.sidebar.collapsed .user-avatar {
    width: 40px;
    height: 40px;
}

.sidebar.collapsed .user-initial {
    font-size: 16px;
}

.sidebar.collapsed .user-name {
    display: none;
}

.sidebar.collapsed .user-profile-dropdown {
    left: 70px;
    top: 10px;
}

.sidebar.collapsed .user-profile-dropdown::before {
    left: -8px;
    top: 20px;
    border-left: 0;
    border-right: 8px solid #001f3f;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.collapse-menu-item {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
}

.toggle-btn {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    gap: 10px;
}

.toggle-btn:hover {
    background-color: #0575ed;
}

.toggle-btn i {
    margin-right: 0;
    font-size: 16px;
    transition: transform 0.3s ease;
    min-width: 20px;
    width: 20px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.toggle-btn span {
    transition: opacity 0.3s ease;
}

.sidebar.collapsed .toggle-btn {
    justify-content: center;
    padding: 15px;
}

.sidebar.collapsed .toggle-btn i {
    margin-right: 0;
    font-size: 20px;
}

.sidebar.collapsed .toggle-btn span {
    display: none;
}

/* Tooltip for collapsed toggle button */
.sidebar.collapsed .toggle-btn::after {
    content: attr(data-tooltip);
    position: fixed;
    left: 75px;
    background-color: #1a4da8;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 999999 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transform: translateZ(0);
    isolation: isolate;
}

.sidebar.collapsed .toggle-btn::before {
    content: '';
    position: fixed;
    left: 70px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #1a4da8;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 999999 !important;
    transform: translateZ(0);
    isolation: isolate;
}

.sidebar.collapsed .toggle-btn:hover::after,
.sidebar.collapsed .toggle-btn:hover::before {
    opacity: 1;
    visibility: visible;
}

.logo {
    max-width: 200px;
    height: auto;
    transition: opacity 0.3s ease;
}

.sidebar.collapsed .logo {
    opacity: 0;
    width: 0;
}

.sidebar.collapsed .sidebar-logo a {
    width: 0;
    overflow: hidden;
}

.sidebar-menu {
    list-style-type: none;
    padding: 0;
    width: 100%;
    flex: 1;
    overflow-y: auto; /* Add vertical scroll if needed */
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none;  /* For Internet Explorer and Edge */
    display: flex;
    flex-direction: column;
}

.sidebar-menu::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}

.sidebar-menu li {
    width: 100%;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    gap: 10px;
}

.sidebar-menu li a i {
    margin-right: 0;
    margin-left: 0;
    padding: 0;
    min-width: 20px;
    width: 20px;
    flex-shrink: 0;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 0;
    right: 0;
}

.sidebar-menu li a span {
    flex: 1;
    white-space: nowrap;
}

.sidebar-menu li a:hover {
    background-color: #059669;
}

/* Tooltip for collapsed sidebar */
.sidebar.collapsed .sidebar-menu li a::after {
    content: attr(data-tooltip);
    position: fixed;
    left: 75px;
    background-color: #1a4da8;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 999999 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transform: translateZ(0);
    isolation: isolate;
}

.sidebar.collapsed .sidebar-menu li a::before {
    content: '';
    position: fixed;
    left: 70px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #1a4da8;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 999999 !important;
    transform: translateZ(0);
    isolation: isolate;
}

.sidebar.collapsed .sidebar-menu li a:hover::after,
.sidebar.collapsed .sidebar-menu li a:hover::before {
    opacity: 1;
    visibility: visible;
}

.analytics-hub-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background-color: transparent;
    margin: 10px; /* 10px margin on all sides */
    margin-bottom: 45px; /* Additional margin at the bottom */
    box-sizing: border-box;
    position: relative;
    gap: 8px;
}

.analytics-hub-button i {
    font-size: 18px;
}

.analytics-hub-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Tooltip for collapsed Analytics Hub button */
.sidebar.collapsed .analytics-hub-button::after {
    content: 'Analytics Hub';
    position: fixed;
    left: 75px;
    background-color: #1a4da8;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 999999 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transform: translateZ(0);
    isolation: isolate;
}

.sidebar.collapsed .analytics-hub-button::before {
    content: '';
    position: fixed;
    left: 70px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid #1a4da8;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 999999 !important;
    transform: translateZ(0);
    isolation: isolate;
}

.sidebar.collapsed .analytics-hub-button:hover::after,
.sidebar.collapsed .analytics-hub-button:hover::before {
    opacity: 1;
    visibility: visible;
}

.sidebar.collapsed .analytics-hub-button i {
    margin: 0;
    font-size: 20px;
}

.main-content {
    margin-left: 250px;
    padding: 20px;
    width: calc(100% - 250px);
    transition: margin-left 0.3s ease, width 0.3s ease;
}

.main-content.collapsed {
    margin-left: 70px;
    width: calc(100% - 70px);
}

.header {
    margin-left: 20px;
}

.header h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.header h2 {
    font-size: 20px;
    font-weight: normal;
    margin-bottom: 30px;
}

.container {
    width: 100%;
    max-width: 1000px;
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.input-container {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    gap: 20px;
}

.input-box {
    background-color: transparent;
    padding: 15px;
    border-radius: 8px;
    flex: 1;
    min-width: 0;
    box-sizing: border-box;
}

.input-box label {
    display: block;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

.input-box input, .input-box input[type="range"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #ffffff;
    border-radius: 0;
    background: transparent;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.input-box input::placeholder {
    color: #cccccc;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.input-box input:focus::placeholder {
    color: transparent;
}

.input-box .range-value {
    margin-top: 10px;
    color: #ffffff;
}

.toggle-container {
    cursor: pointer;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.toggle-text {
    font-size: 18px;
    font-weight: bold;
}

.toggle-icon {
    font-size: 24px;
    font-weight: bold;
}

.metrics-subtext {
    margin-bottom: 20px;
    font-size: 14px;
    color: #cccccc;
}

button {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-top: 5px;
    border: none;
    border-radius: 0px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

button:hover {
    background-color: #0056b3;
}

.results {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    color: #ffffff;
    display: none;
    text-align: left;
}

/* Checklist Styles */
body.modal-open {
    overflow: hidden;
}

.checklist-container {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 20px 20px 20px 0px;
    margin-top: 20px;
    margin-left: 20px;
}

.checklist-container .task-bucket {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    color: #000000;
}

.on-hold-btn, .done-btn, .delete-task-btn {
    color: white;              /* White text */
    border: none;
    border-radius: 4px;        /* Optional: rounded corners */
    width: 27px;               /* Fixed width */
    height: 27px;              /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;           /* Font size for the icons */
    cursor: pointer;
    margin-left: 0px;          /* Space between buttons */
}

.done-btn { 
    background-color: #038603;
}

.on-hold-btn {
    background-color: #e49400;
}

.delete-task-btn { 
    background-color: #c50000;
}

.on-hold-btn i, .done-btn i, .delete-task-btn i {
    pointer-events: none;      /* Prevent click events on the icon */
}


.checklist-container .task-bucket:hover {
    background-color: #f0f0f0;
}

.checklist-container .bucket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checklist-container .bucket-header h3 {
    margin: 0;
}

.checklist-container .add-task-btn {
    background-color: #0434b6;
    color: white;
    border: none;
    font-weight:normal;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.checklist-container .add-task-btn:hover {
    background-color: #0056b3;
}

.checklist-container .task-list {
    list-style-type: none;
    padding: 0;
    min-height: 100px; /* Add minimum height for better visual */
}

.checklist-container .task-item {
    background-color: #f9f9f9;
    margin-bottom: 5px;
    margin-top:5px;
    font-size: 14px;
    padding: 5px 10px; /* Reduced padding */
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    cursor: move; /* Indicate that the item is draggable */
    color: #000000;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #e0e0e0;
}

.checklist-container .task-item.completed {
    background-color: #e0e0e0;
    text-decoration: line-through;
}

.task-list {
    height: auto;
    max-height: 450px; /* Adjust this value to fit approximately 12 tasks */
    overflow-y: auto;
}

.checklist-container .task-actions {
    display: flex;
    gap: 5px;
}

.checklist-container .task-actions .icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-left: 5px;
}

.checklist-container .task-actions .icon:hover {
    color: #007bff;
}

.checklist-container .task-actions .icon.yellow {
    color: #ffc107;
}

.checklist-container .task-actions .icon.green {
    color: #28a745;
}

.checklist-container .task-actions .icon.red {
    color: #dc3545;
}

.checklist-container .task-actions .icon.delete {
    color: #ff0000;
    font-size: 18px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    width: 300px;
    color: #000000;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

input[type="text"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-bottom: 1px solid #ccc;
    color: #000000;
    font-family: 'Poppins', sans-serif;
}

.icon-padding {
    padding-left: 8px; /* Adjust the value to your preference */
}

/*File Manager */

.file-manager-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    width: 100%;
    max-width: 600px;
    margin: auto;
    color: white;
}

.upload-container {
    margin-bottom: 20px;
    width: 100%;
}

.file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px dashed #fff;
    padding: 10px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    height: 50px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.file-label:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.folders {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 20px;
}

.folder {
    border: 2px solid #ffffff;
    padding: 10px;
    border-radius: 4px;
    width: 100%;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.folder-title {
    margin: 0;
    padding: 5px;
    color: #333;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.folder-title::after {
    content: '▼';
    font-size: 12px;
}

.uncategorized-title {
    margin: 0;
    padding: 5px 0;
    color: #ffffff;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #ffffff;
}

.uncategorized {
    width: 100%;
    margin-top: 20px;
}

.file-list {
    list-style-type: none;
    padding: 0;
    margin: 5px 0 0 0;
    width: 100%;
    display: none;
}

.file-list.expanded {
    display: block;
}

.file-list.empty::before {
    content: 'No files available.';
    display: block;
    padding: 5px;
    color: #999;
    text-align: center;
}

.file-list li {
    background-color: #007bff;
    color: white;
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 4px;
    cursor: move;
    text-align: left;
}

.quarterly-goals-container {
    padding: 20px;
    text-align: center;
    color: white;
}

.countdown-timer {
    font-size: 4rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
}

.countdown-timer .number {
    font-weight: 700; /* Extra bold */
}

.countdown-timer .unit {
    font-weight: 300; /* Thin weight */
}

.countdown-text {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.goal-input-container {
    margin-bottom: 20px;
}

/*.goal-column {
    box-shadow: 
        0 0 5px #0575ed, 
        0 0 5px #0575ed, 
        0 0 65px #0575ed, 
        0 0 15px #0575ed, 
        0 0 65px #0575ed; /* Multiple shadows to create neon effect */
        
}

.goal-input {
    width: calc(100% - 20px);
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-bottom: 2px solid lightgrey;
    background: transparent;
    color: white !important; /* Ensure text color is white */
    font-family: 'Poppins', sans-serif;
    text-align: center;
    outline: none;
}

.goal-input::placeholder {
    color: lightgrey;
    font-style: italic;
}

.committed-goals {
    text-align: left;
}

.committed-goals h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.committed-goals ul {
    list-style-type: none;
    padding: 0;
    font-size: 1.2rem;
}

.goal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    cursor: grab; /* Indicates draggable item */
    color: white; /* Ensure text color is white */
    position: relative;
}

.goal-item.on-track {
    background-color: green;
}

.goal-item.on-hold {
    background-color: orange;
}

.goal-item.off-track {
    background-color: red;
}

.goal-item.completed {
    background-color: rgb(190, 190, 190);
    color: rgb(97, 96, 96);
    order: 1;
}

.goal-status {
    display: flex;
    align-items: center;
    gap: 10px; /* Adjust the gap as needed */
}

.status-dropdown {
    padding: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: white;
    background-color: darkgreen; /* Initial color for On-Track */
    height: 30px; /* Ensure dropdown has consistent height */
    line-height: 30px; /* Center text vertically */
}

.status-dropdown.on-track {
    background-color: darkgreen;
}

.status-dropdown.on-hold {
    background-color: darkorange;
}

.status-dropdown.off-track {
    background-color: darkred;
}

.status-button {
    padding: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: white;
    background-color: transparent;
    outline: solid 2px; 
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px; /* Ensure all buttons have the same height */
    width: 30px; /* Ensure all buttons have the same width */
}

.status-button.delete-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.status-button i {
    font-size: 1rem;
    color: white;
    line-height: 1; /* Ensure icons are centered */
}

.sortable-ghost {
    opacity: 0.4;
}

/* Other styles */
.upload-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 2px dashed #fff;
    padding: 20px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.file-label:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.file-icon {
    font-size: 50px;
    margin-bottom: 10px;
}

.image-display {
    display: none;
    position: relative; /* Make the container position relative */
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.image-display img {
    max-width: 100%;
    max-height: 80vh;
    cursor: zoom-in;
}

.delete-button {
    position: relative;
    top: 0px;
    right: 5px;
    background-color: trasnparent !important;
    width: 30px;
    height: 30px;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.status-button.delete-button:hover {
    background-color: #333; /* Very dark grey on hover */
}

/* styles.css */

.calculate-btn {
    width: 100%; /* Adjust the width as needed */
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-top: 10px;
    border: none;
    border-radius: 0px;
    background-color: #0434b6;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

.calculate-btn:hover {
    background-color: #0056b3;
}


#lightbox {
    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;
    cursor: zoom-out;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
}

#lightbox.zoomed-in img {
    transform: scale(2);
}

/* KPI Specific Page Styles */
.header .subtext {
    font-size: 14px;
    font-weight: 300; /* Thin text */
    margin-top: -10px;
    color: #cccccc; /* Light color for contrast */
}

.kpi-container {
    padding: 20px;
}

.kpi-table-container {
    overflow-x: auto;
    white-space: nowrap;
}

.kpi-table {
    width: max-content; /* This ensures the table does not shrink */
    border-collapse: collapse;
    margin: 20px 0;
}

.kpi-table th, .kpi-table td {
    padding: 5px;
    text-align: left;
    color: #000;
    min-width: 120px; /* Fixed width for each cell */
}

.kpi-table th {
    background: #133ba5; /* Darker blue for header */
    color: white;
    position: relative;
    border: 1px solid #013183;
}

.kpi-table td {
    border: 1px solid #ececec;
}

.kpi-table th .delete-container {
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
}

.kpi-table th .delete-button {
    background: none;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 12px;
    padding: 2px 5px;
}

.kpi-table th .delete-button:hover {
    color: red;
}

.kpi-table td[contenteditable="true"] {
    background: #f9f9f9;
    cursor: text;
}

/* Add padding to the right of the text in the first column */
.kpi-table td:first-child {
    padding-right: 85px;
    font-weight: bold;
    background-color: #e3e2e2;
}

.kpi-table td:nth-child(2) {
    background-color: #e3e2e2;
}

.kpi-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.kpi-button {
    background: #133ba5;
    color: white;
    border: none;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius:4px;
}

.kpi-button:hover {
    background: #0056b3;
}

/* Vision CSS */
/* styles.css */
.vision-container {
    display: flex;
    gap: 20px;
    padding: 20px;
}

.vision-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vision-module {
    background-color: #ffffff;
    color: #000000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Ensure fields stay within the module */
    position: relative;
}

.vision-module h2 {
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.editable-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.editable-list li {
    display: flex;
    align-items: center;
    padding: 5px 0;
    position: relative;
}

.editable-list li span {
    color: #000000; /* Black color for regular text */
    word-break: break-word; /* Ensure long words break correctly */
}

.editable-list li span:first-child {
    color: #025698; /* Color for bold text */
    font-weight: bold;
    padding-left: 20px; /* Padding left for bold text */
    margin-right: 5px; /* Reduced margin */
}

.editable-list li span:last-child {
    flex: 1;
}

.dropdown {
    position: absolute;
    right: 0; /* Fixed to the right side */
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Ensure dropdown appears in front */
}

.dropdown:hover .dropdown-content {
    display: block;
}

.editable-item h3 {
    margin: 10px 0 5px;
}

.editable-item p {
    padding: 10px;
    bottom-border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f9f9f9;
    cursor: text;
}

.vision-input-container input[type="text"] {
    flex: 1;
    position: relative;
    z-index: 1; 
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #0056b3; /* Blue text color */
    font-weight: bold;
    transition: box-shadow 0.3s ease-in-out;
}

.vision-input-container input[type="text"]:focus {
    outline: none;
    box-shadow: 0 0 5px 2px rgba(0, 86, 179, 0.5); /* Glowing blue effect */
    border-color: #0056b3;
}

.vision-input-container input[type="text"]::placeholder {
    color: #cccccc;
    font-weight: normal;
}

input[type="text"] {
    flex: 1;
    padding: 10px;
    bottom-border: 1px solid #ccc;
    box-sizing: border-box;
}

.subtext {
    font-size: 16px;
    color: #cccccc;
    margin-top: -10px;
    margin-bottom: 20px;
}

.add-icon {
    background-color: #0434b6;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    height: 40px;
    width: 40px;
}

.add-icon:hover {
    background-color: #0056b3;
}

.dropdown-icon {
    background-color: transparent;
    color: #007bff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-icon:hover {
    color: #0056b3;
    background-color: #ddd !important;
}

.vision-editable-list-container h3 {
    margin: 10px 0 5px; /* Reduced margin for tighter spacing */
}

.italic-preview {
    flex: 1;
    color: #000000; /* Black color for regular text */
    font-style: italic; /* Italics */
    font-weight: normal; /* Regular font weight */
    font-size: 16px; /* Regular size */
}

.unique-value-input,
.guarantee-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Meeting Agenda*/
/* General container setup to reduce the gap and expand the modules */
.checklist-container {
    display: flex;
    gap: 10px; /* Smaller gap between modules */
    padding: 20px; /* Padding around the entire container */
    justify-content: space-around; /* Ensures equal spacing */
}

.discussion-type {
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #000;
    margin-right: 10px;
}

/* General styles for all task buckets */
.task-bucket {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 20px;
    border-radius: 8px;
    height: 300px; /* Adjust this value as needed */
}

/* Styles for the task list container */
.task-bucket > ul.task-list,
.task-bucket > div > ul.task-list {
    height: calc(100%); /* Adjust based on your header height */
    overflow-y: auto;
    padding-right: 10px;
    margin: 0;
    list-style-type: none;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

/* Webkit browsers like Chrome, Safari */
.task-list::-webkit-scrollbar {
    width: 6px;
}

.task-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.task-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.task-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}


/* Adjustments for Meeting Topics */
.meeting-topics {
    background-color: #f0f8ff; /* Light azure for distinction */
    color: #000000;
}

.meeting-topics .bucket-header {
    color: black;
}


.light-font {
    font-family: 'Poppins', sans-serif;
    font-weight: 200; /* Light font weight */
}


.meeting-topics .task-list {
    background-color: #f8f9fa; /* Very light grey */
}

.task-list-wrapper {
    flex-grow: 1;
    overflow-y: hidden; 
}

.task-list {
    height: auto;
    max-height: 420px; /* Adjust this value to fit approximately 12 tasks */
    overflow-y: auto;
}

/* Adjustments for Parking Lot */
.parking-lot {
    background-color: #fffaf0; /* Light golden for distinction */
    color: #000000;
}

.parking-lot .bucket-header {
    color: black;
}

.parking-lot .task-list {
    background-color: #fdfdfe; /* Very light almost white */
}


/* Goals Page */

.goal-column {
    padding: 0 !important; /* Remove padding from goal-column */
}

.module-header {
    background-color: #001f3f;
    margin: 0; /* Remove default margin */
    width: 100%; /* Ensure it spans the full width */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}


.goals-container {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.goal-column {
    background-color: #ffffff;
    padding: 20px;
    padding-top: 0px;
    border-radius: 3px;
    width: 30%;
    color: #000000;
}

.goal-column h2 {
    color: #000000;
    border-radius: 3px;
}

.editable-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.editable-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    padding-bottom:10px;
    border-bottom: 1px solid #ccc;
}

.editable-list span {
    flex: 1;
    padding: 5px;
    margin-left: 5px;
    border-radius: 4px;
    outline: none;
}

.editable-list span[contenteditable="true"] {
    background-color: transparent;
    border: none;
    width: calc(100% - 5px);
}

.editable-list .future-date {
    width: 200px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-icon {
    background: none;
    border: none;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1001;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropdown-icon {
    background-color: #ddd;
}




/* Brand Analytics Button */

.brand-analytics-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    color: white;
    text-decoration: none;
    border: 2px solid #0434b6;
    border-radius: 0px;
    background-color: #0434b6;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px; /* Add margin at the top */
    gap: 10px; /* Add space between text and icon */
}

.brand-analytics-button:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}




/* Media queries to adjust the input sizes */
@media (max-width: 768px) {
    .input-container {
        gap: 10px;
    }

    .input-box {
        padding: 10px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .input-container {
        gap: 5px;
    }

    .input-box {
        padding: 8px;
        font-size: 12px;
    }
}

/* Responsive adjustments */
@media (max-height: 768px) {
    .sidebar {
        height: 100vh;
        overflow-y: auto;
    }

    .sidebar-menu {
        overflow-y: auto;
    }
}

.modal-open {
    overflow: hidden;
}


.blur-background {
    filter: blur(5px);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Ensure it is behind the modal */
}
.content-wrapper {
    position: relative;
    z-index: 1; /* Lower z-index to be behind the modal */
}

/* Meeting Agenda */
body.modal-open {
    overflow: hidden;
}

.meeting-checklist-container {
    display: flex;
    gap: 10px; /* Reduced gap between columns */
    justify-content: space-between;
    padding: 20px;
    margin-top: 20px;
}

.meeting-task-bucket {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    flex-grow: 1; /* Allow columns to grow */
    width: 45%; /* Set width to make columns larger */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    color: #000000;
}



.meeting-start-btn, .meeting-done-btn, .meeting-delete-task-btn {
    color: white;              /* White text */
    border: none;
    border-radius: 4px;        /* Optional: rounded corners */
    width: 30px;               /* Fixed width */
    height: 30px;              /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;           /* Font size for the icons */
    cursor: pointer;
    margin-left: 0px;          /* Space between buttons */
}

.meeting-start-btn {
    background-color: #28a745; /* Green background */
}

.meeting-start-btn:hover {
    background-color: #218838; /* Darker green on hover */
}

.meeting-done-btn {
    background-color: #17a2b8; /* Blue background */
}

.meeting-done-btn:hover {
    background-color: #138496; /* Darker blue on hover */
}

.meeting-delete-task-btn {
    background-color: #dc3545; /* Red background */
}

.meeting-delete-task-btn:hover {
    background-color: #c82333; /* Darker red on hover */
}

.meeting-checklist-container .meeting-task-bucket:hover {
    background-color: #f0f0f0;
}

.meeting-checklist-container .meeting-bucket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.meeting-checklist-container .meeting-bucket-header h3 {
    margin: 0;
}

.meeting-checklist-container .meeting-add-task-btn {
    background-color: #0434b6;
    color: white;
    border: none;
    font-weight:normal;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.meeting-checklist-container .meeting-add-task-btn:hover {
    background-color: #0056b3;
}

.meeting-checklist-container .meeting-task-list {
    list-style-type: none;
    padding: 0;
    min-height: 100px; /* Add minimum height for better visual */
}

.meeting-checklist-container .meeting-task-item {
    background-color: #f9f9f9;
    margin-bottom: 5px;
    padding: 5px 10px; /* Reduced padding */
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    cursor: move; /* Indicate that the item is draggable */
    color: #000000;
    font-family: 'Poppins', sans-serif;
    border: 1px solid #e0e0e0;
}

.meeting-checklist-container .meeting-task-item.meeting-completed {
    background-color: #e0e0e0;
    text-decoration: line-through;
}

.meeting-checklist-container .meeting-task-item.discussion-started {
    background-color: #d1ecf1; /* Light blue background to indicate the discussion has started */
}

.meeting-checklist-container .meeting-task-actions {
    display: flex;
    gap: 5px;
}

.meeting-checklist-container .meeting-task-actions .icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-left: 5px;
}

.meeting-checklist-container .meeting-task-actions .icon:hover {
    color: #007bff;
}

.meeting-checklist-container .meeting-task-actions .icon.yellow {
    color: #ffc107;
}

.meeting-checklist-container .meeting-task-actions .icon.green {
    color: #28a745;
}

.meeting-checklist-container .meeting-task-actions .icon.red {
    color: #dc3545;
}

.meeting-checklist-container .meeting-task-actions .icon.delete {
    color: #ff0000;
    font-size: 18px;
}

.meeting-modal {
    display: none;
    position: fixed;
    z-index: 1000; /* Ensure the modal content is above the modal background */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.meeting-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    width: 300px;
    color: #000000;
    z-index: 1001; /* Ensure the modal content is above the blur effect */
}

.meeting-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

input[type="text"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-bottom: 1px solid #ccc; /* Ensure input border is visible */
    color: #000000;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 1002; /* Ensure input is above blur effect */
}

/* Discussion modal styles */
.discussion-modal {
    display: none;
    position: fixed;
    z-index: 1002; /* Ensure it is above the blur effect */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.discussion-content {
    position: relative;
}

#discussion-title {
    font-size: 3em;
    margin-bottom: 20px;
}

#countdown-timer {
    font-size: 2em;
    margin-bottom: 20px;
}

.discussion-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.discussion-btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.discussion-btn:hover {
    background-color: #0056b3;
}

/* Add this at the end of styles.css */
.discussion-btn {
    height: 50px; /* Set a fixed height for all buttons */
    line-height: 50px; /* Center the text vertically */
    padding: 0 20px; /* Adjust the padding */
    margin: 1px;
    display: inline-block;
    white-space: nowrap; /* Prevent text from wrapping */
}

#pause-timer-btn {
    background-color: #dda408; /* Green */
}

#resume-timer-btn {
    background-color: #ffc107; /* Yellow */
}

#stop-timer-btn {
    background-color: #dc3545; /* Red */
}

#done-btn {
    background-color: #038603; /* Blue */
}

#add-5min-btn {
    background-color: #1548d6; /* Light blue */
}

/*Countdown Timer for Quarterly Goals*/

/* Countdown Timer Unique Styles */
.unique-timer {
    font-size: 4rem !important;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
}

.unique-timer .number {
    font-weight: 700; /* Extra bold */
}

.unique-timer .unit {
    font-weight: 300; /* Thin weight */
}

.unique-text {
    font-size: 1.5rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

/* Growth Calculator Input Styles */
.growth-input {
    color: white !important;
}

/* Ensure placeholder text is also white */
.growth-input::placeholder {
    color: lightgrey !important;
    font-style: italic;
}

/* Unique Quarterly Goals Input Styles */
.unique-goal-input {
    background: none;
    font-size:2em;
    border: none;
    border-bottom: 2px solid #ddd;
    color: white !important;
    text-align: center;
    outline: none;
    font-family: 'Poppins', sans-serif;
    padding: 10px;
    width: calc(100% - 20px);
}

.unique-goal-input::placeholder {
    color: #ddd;
    font-style: italic;
}

.brands-list{
    width: 100%;
    display: flex;
    gap: 26px;
 flex-wrap: wrap;
}
.brand-item{
display: flex;
align-items: center;
gap: 3px;
}
.brand-item img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    
}
.brand-logo-container
{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.brand-delete-icon {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    position: absolute;
    display: none;
    cursor: pointer;
    background-color: #0000008a;
    
}

/* Show the icon when hovering over its parent element */
.brand-item:hover .brand-delete-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: ; */
}



#add-brand-form{
    display: flex;
    align-items: center;
    width: 750px;
}
#add-brand-form label{
    width: 110px;
}
#brand-name{
 padding: 5px;
 border-radius: 3px;
width: 200px;
margin-right: 20px;
}
#add-brand-button{
    border-radius: 3px;
    width : 120px;
    background-color: #045cb9;
    }
    #brand-logo{
        font-family: 'Poppins', sans-serif;
        border-radius: 3px;
        width: 195px;
        margin-right:10px ;
        padding: 5px;
        background-color: #045cb9;
    }



.assign-brand-team{
    width: 100px;
    height: 50px;
    border-radius: 20%;
    padding: 2px;
    margin-left: 2px;
}
.header-info{
    display: flex;
    align-items: center;
    width: 50%;
}

.header-info select{
font-family: 'Poppins', sans-serif;
padding: 6px;
background-color: #045cb9;
border-color: #045cb9;
color: white;
margin-right: 5px;
border-radius: 3px;
}
.header-info button{
border-radius: 3px;
width: 100px;
background-color: #045cb9;
}

#brand-select{
    font-family: 'Poppins', sans-serif;
    padding: 5px;
    background-color: #024b99;
    color: rgb(255, 255, 255);
    border-color: #024b99;
    margin-right: 5px;
    border-radius: 3px;
    border-style: none;
    margin-top: 10px;
}
.brand-option{
    padding: 8.6px;
    background-color: #024b99;
    color: white;
    margin-right: 5px;
    border-radius: 30px;
    border-style: none;
    margin-top: 3px;
    width: 100px;
}
/* Loader container */
#loader1 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensures it is on top of all other content */
}

/* Loader animation */
.loader {
    border: 16px solid #f3f3f3; /* Light grey background for the spinner */
    border-top: 16px solid #3498db; /* Blue color for the top part of the spinner */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

/* Keyframes for the spin animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Base styles for the alert box */
#alert-box1 {
    display: none;
}
.alert-box {
    position: fixed;
    z-index: 9999;
    padding: 15px 20px;
    left : 50%;
    top: 4px;
    /* transform: translate(-50%, -50%); */
    /* margin: 20px; */
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    /* position: relative; */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Success alert styles */
.alert-box.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert-box.failed {
    background-color: #ff0000;
    color: #ffffff;
    border: 1px solid #c3e6cb;
}

/* Animation for showing the alert */
@keyframes slideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.alert-box {
    animation: slideIn 0.5s ease-in-out;
}
/* #clients-content{
    display: none;
}
#team-content{
    display: none;
}
#brands-container{
    display: none;
} */



/* Table cell styling - set this to white */
.kpi-table tbody td {
    background-color: white; /* White background for cells */
    color: black;
    padding: 10px;
    border: 1px solid #ddd; /* Optional: Add a border for better visual separation */
}

.kpi-cell {
    position: relative;
}

.delete-icon {
    width: 16px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: none; /* Hide by default */
    cursor: pointer;
}

.kpi-cell:hover .delete-icon {
    display: inline; /* Show on hover */
}

.delete-row {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.delete-button {
    background-color: transparent;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.delete-button:hover {
    background-color: #ff1a1a;
}

.delete-container {
    position: relative;
}

.delete-container:hover .delete-icon {
    display: inline-block;
    cursor: pointer;
    position: absolute;
    left: -20px;
}


/* Admin dashboard link should be visible, only hide the admin content section */
#admin-dashboard {
    /* display removed so menu item shows */
}

/* Specific fix for admin icon alignment */
#admin-dashboard i.fas.fa-user-shield {
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding: 0 !important;
    min-width: 20px !important;
    width: 20px !important;
    max-width: 20px !important;
    flex-shrink: 0 !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Force all Font Awesome icons to be centered */
.sidebar-menu li a i.fas,
.sidebar-menu li a i.far,
.sidebar-menu li a i.fab {
    margin-left: 0 !important;
    padding-left: 0 !important;
}
#google-sheet{
    display: none;
}

#google-sheets-content {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#google-sheets-content h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 600;
}

#google-sheet-link {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

#google-sheet-link:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

#sheets-table {
    width: 100%;
    max-width: none;
    table-layout: fixed;
    border-collapse: collapse;
    margin: 0;
}

#sheets-table th {
    background: #0056b3;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

#sheets-table th:nth-child(1) {
    width: 25%;
}

#sheets-table th:nth-child(2) {
    width: 60%;
}

#sheets-table th:nth-child(3) {
    width: 15%;
    text-align: left;
}

#sheets-table td {
    vertical-align: top;
    padding: 15px;
    border-bottom: 1px solid #eee;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

#sheets-table td:nth-child(1) {
    font-weight: 600;
    color: #333;
}

#sheets-table td:nth-child(2) {
    max-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

#sheets-table td:nth-child(3) {
    text-align: left;
    vertical-align: middle;
}

#sheets-table a {
    color: #007bff;
    text-decoration: none;
    word-break: break-all;
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#sheets-table a:hover {
    text-decoration: underline;
    white-space: normal;
    word-break: break-all;
}

#sheets-table .delete-button {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: background-color 0.3s;
    white-space: nowrap;
    min-width: 80px;
}

#sheets-table .delete-button:hover {
    background: #c82333;
}

#sheets-table .delete-button i {
    margin-right: 5px;
}


/* Styles for the more options button and menu */
/* .brands-box{
    display: flex;
    justify-content: center;
    align-items: center;
  } */

  .brands-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 30px; /* Add some padding to the right to accommodate the icon */
}

.more-options {
    position: relative;
    display: inline-block;
}

.more-options-button {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    color: #000;
    padding: 5px;
}

.more-options-button:hover {
    background-color: transparent;
}

.more-options-menu {
    display: none;
    width: 150px;
    position: absolute; /* Change to fixed positioning */
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2); /* Add shadow for better visibility */
    z-index: 9999; /* Very high z-index */
}

.more-options-menu button {
    font-weight: 400;
    color: #000;
    display: block;
    width: 100%;
    padding: 10px 15px; /* Increase padding for easier selection */
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s;
}

.more-options-menu button:hover {
    background-color: #f0f0f0; /* Add hover effect */
}

.more-options-menu button:not(:last-child) {
    border-bottom: 1px solid #ddd;
}

/* Ensure the icon is visible */
.more-options-button i {
    pointer-events: none; /* This ensures clicks go through to the button */
}
  
  .more-options-menu button:hover {
    background-color: #c7bfbf;
  }
  
  .more-options-menu button:last-child {
    border-bottom: none;
  }
  
  /* Show the menu when hovering over the button */
  .more-options:hover .more-options-menu {
    display: block;
  }
  
  /* Modal Background */
#brand-delete-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9000; /* Ensure it appears on top of other content */
  }
  
  /* Modal Content */
  #brand-delete-modal .modal-content {
    background-color: #fff; /* White background for the modal content */
    padding: 20px; /* Padding inside the modal */
    border-radius: 8px; /* Rounded corners */
    width: 90%; /* Default width */
    max-width: 400px; /* Max width of the modal */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    text-align: center; /* Center align text */
  }
  
  /* Heading */
  #brand-delete-modal h2 {
    margin-bottom: 20px; /* Space below the heading */
    font-size: 24px; /* Font size for the heading */
    color: #333; /* Dark gray color for the text */
  }
  
  /* Label */
  #brand-delete-modal label {
    display: block;
    margin-bottom: 10px; /* Space below the label */
    font-size: 16px; /* Font size for the label */
    color: #555; /* Medium gray color for the label */
    text-align: left; /* Align label text to the left */
  }
  
  /* Select Dropdown */
  #brand-delete-modal select {
    width: 100%; /* Full width dropdown */
    padding: 10px; /* Padding inside the select */
    font-size: 16px; /* Font size for the dropdown text */
    border: 1px solid #ccc; /* Light gray border */
    border-radius: 4px; /* Rounded corners */
    margin-bottom: 20px; /* Space below the dropdown */
    box-sizing: border-box; /* Ensure padding and border are included in the width */
  }
  
  /* Buttons */
  #brand-delete-modal button {
    padding: 10px 20px; /* Padding inside the buttons */
    font-size: 16px; /* Font size for the button text */
    border: none; /* Remove default border */
    border-radius: 4px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    margin: 10px; /* Space between buttons */
  }
  
  /* Confirm Delete Button */
  #delete-brand-confirm {
    background-color: #421de9; /* Red background for delete button */
    color: #fff; /* White text color */
  }
  
  /* Cancel Button */
  #cancel-brand-delete {
    background-color: #bdc3c7; /* Gray background for cancel button */
    color: #fff; /* White text color */
  }
  
  /* Button Hover Effects */
  #brand-delete-modal button:hover {
    opacity: 0.9; /* Slightly reduce opacity on hover */
  }
  
  /* Container for header cell */
  .header-cell-container {
    position: relative;
  }

  /* Trash icon style for headers */
  .trash-icon {
    font-size: 11px; /* Small size for the icon */
    color: rgb(255, 250, 250); /* Red color for visibility */
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: none; /* Hide by default */
  }

  /* Show trash icon on hover */
  .header-cell-container:hover .trash-icon {
    display: inline;
  }
.cell-trash-parent{
  position: relative;
}
  /* Trash icon in table cells */
  .cell-trash-icon {
    font-size: 12px;
    color: rgb(3, 56, 170);
    cursor: pointer;
    position: absolute;
    display: none; /* Hide by default */
    right: 0;
    margin-top: 5px;
margin-right: 5px;
  }

  /* Show trash icon on hover for table cells */
  td:hover .cell-trash-icon {
    display: inline;
  }

  .hyperlink-btn {
    background: none;
    border: none;
    cursor: pointer;
}

.meeting-task-actions .meeting-move-up-btn,
.meeting-task-actions .meeting-move-down-btn {
    background: none;
    border: none;
    color: grey;
    cursor: pointer;
    padding: 0;
}

.meeting-task-actions .meeting-move-up-btn:hover,
.meeting-task-actions .meeting-move-down-btn:hover {
    color: darkgrey;
}



.hyperlink-dropdown {
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    z-index: 100;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: grey;
    display: none; /* Ensure it's initially hidden */
}

.hyperlink-dropdown button {
    display: block;
    width: 100%;
    font-weight:normal;
    padding: 8px;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    color: grey;
}

.hyperlink-dropdown button:hover {
    background-color: #f0f0f0;
}

.hyperlink-btn :hover  {
 color:#fff !important;
}

.hyperlink-dropdown button:hover {
    background-color: #f0f0f0;
}

/*Growth Checklist Code*/

/* General checklist container styling */
.checklist-container {
    padding: 15px;
    max-width: 1600px;
    margin: 0 auto; /* Center the container */
}

/* Grid layout for modules */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 5 equal columns */
    gap: 20px; /* Space between modules */
}

/* Adjust responsive design for 4 columns */
@media (max-width: 1200px) {
    .checklist-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on medium screens */
    }
}

@media (max-width: 992px) {
    .checklist-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
    }
}

@media (max-width: 576px) {
    .checklist-grid {
        grid-template-columns: 1fr; /* 1 column on very small screens */
    }
}

.checklist-module {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center; /* Center text and icon */
    transition: transform 0.3s ease;
    position: relative;
}

.checklist-module:hover {
    transform: translateY(-5px);
}

.checklist-module .module-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333333; /* Set a standard color */
    font-size: 30px; /* Size of the icon */
    color: #6c757d; /* Grey color for the icon */
    margin-bottom: 10px;
    padding-top:15px;
}

.checklist-module .module-title-container i {
    font-size: 30px; /* Larger icon */
    color: #c7cdd3; /* Grey color for the icon */
    margin-bottom: 10px;
}

.checklist-module h2 {
    font-size: 14px; /* Smaller title text */
    margin: 0;
    font-weight: 600;
    color: #333333;
    white-space: nowrap; /* Prevent wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
}

.checklist-module p {
    margin: 15px 0;
    font-size: 12px; /* Smaller description text */
    color: #555555;
    line-height: 1.4;
}

/* Volume meter styles */
/* Volume meter styles */
.volume-meter {
    background: #e0e0e0; /* Subtle light background for the meter */
    border-radius: 20px; /* Rounded edges */
    height: 12px; /* Slightly increased height for visibility */
    margin: 15px 0 10px 0; /* Adjusted margin to make room for the text */
    overflow: hidden;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1); /* Softer inner shadow */
    position: relative; /* To contain the pseudo-elements */
}

/* Volume meter container */
.volume-meter-container {
    position: relative;
}

/* Volume meter styles */



/* Special case for 90% and above: Add green */


.volume-level {
    height: 100%;
    transition: width 0.3s ease, background-color 0.3s ease;
}
.volume-level[data-priority="low"] {
    width: 25%;
    background-color: #2c01c7; /* Soft pink */
}
.volume-level[data-priority="medium"] {
    width: 50%;
    background-color: #2c01c7; /* Steel blue */
}
.volume-level[data-priority="high"] {
    width: 100%;
    background-color: #2c01c7; /* Bright green */
    box-shadow: 0 0 10px #2c01c7; /* Glowing effect */
}

/* Small text under the meter */
.important-text {
    position: absolute;
    right: 0;
    bottom: -18px; /* Positioned below the meter */
    font-size: 10px;
    color: #6c757d; /* Grey color for the text */
}


/* Mark as Done button */
.button-container {
    display: flex;
    gap: 10px; /* Space between buttons */
    margin-top: 10px;
}

.in-progress, .add-to-rocks {
    background-color: rgb(1, 25, 136);
    color: white;
    padding: 5px 6px; /* Smaller padding for smaller buttons */
    cursor: pointer;
    font-size: 12px; /* Smaller font size */
    flex-grow: 1;
    text-align: center;
}

.in-progress:hover, .add-to-rocks:hover {
    background-color: #050364;
}


    .add-to-rocks {
        transition: background-color 0.3s, color 0.3s;
    }
    .add-to-rocks.in-progress {
        background-color: #dc3545; /* Red background for "Remove" state */
        color: white;
    }



.in-progress:hover {
    background: #0056b3; /* Darker blue on hover */
}

/* Responsive design: Adjust the grid columns for smaller screens */
@media (max-width: 1200px) {
    .checklist-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on medium screens */
    }
}

@media (max-width: 992px) {
    .checklist-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on smaller screens */
    }
}

@media (max-width: 768px) {
    .checklist-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
    }
}

@media (max-width: 576px) {
    .checklist-grid {
        grid-template-columns: 1fr; /* 1 column on very small screens */
    }
}



.tag-container {
    margin-top: 10px;
    display: flex;
    gap: 5px;
}

.tag {
    font-size: 9px;
    padding: 2px 5px;
    border-radius: 10px;
    background-color: lightgrey;
    vertical-align:middle;
    color: grey;
    border: 1px solid rgb(134, 134, 134);
    opacity: 0.5;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.tag.active {
    opacity: 1;
}

.tag.conversion-rate.active {
    background-color: rgb(104, 133, 104);
    color: white;
    border: none;
}

.tag.page-views.active {
    background-color: rgb(117, 117, 184);
    color: white;
    border: none;
}

.tag.profitability.active {
    background-color: orange;
    color: white;
    border: none;
}

.greyed-out {
    opacity: 0.5;
}

.overlay-banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(3, 50, 179, 0.8); /* Semi-transparent blue background */
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 5px 0;
    z-index: 10;
    border-radius: 4px 4px 0 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.note-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
}

.note-modal-content {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.note-modal-content textarea {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    height: 150px;
    margin-bottom: 15px;
}

.note-modal-content .close-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}


/* Note button styling */
.task-actions .note-task-btn {
    background: none; /* Remove background */
    border: none; /* Remove border */
    padding: 0; /* Remove padding */
    margin: 0 5px; /* Add some margin for spacing */
    cursor: pointer; /* Change cursor to pointer */
}

.task-actions .note-task-btn i {
    font-size: 16px; /* Smaller icon size */
    color: grey; /* Set icon color to grey */
}

/* Add hover effect specifically for the note button */
.task-actions .note-task-btn:hover i {
    color: darkgrey; /* Slightly darker grey on hover */
}

.task-title {
    cursor: text;
}

.meeting-completed {
    text-decoration: line-through;
    background-color: #f0f0f0;
    color: #999;
}

.meeting-title {
    cursor: text;
}

/* Highlight active menu item with a vertical bar */
.sidebar-menu li a.active {
    border-left: 4px solid #fbbf24; /* Vertical bar - yellow accent */
    background-color: #059669; /* Medium-dark green */
    padding-left: 16px; /* Adjust padding to account for the bar */
}
.sidebar-menu li a:hover {
    background-color: #059669; /* Medium-dark green to match active */
}


.custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.modal-buttons {
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    margin: 0 10px;
    margin-bottom:10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn:hover {
    opacity: 0.8;
}

.kpi-cell {
    position: relative;
}

.icon-container {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    padding-right:25px;
}

.icon-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.reorder-icon {
    font-size: 12px;
    color: #666;
    
}

.reorder-icon:hover {
    color: #333;
}

.brands-dropdown {
    width: 250px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
  }

  .brands-dropdown {
    font-family: 'Poppins', sans-serif;
  }

  
/* Add these new styles */

/* Add these new styles */
@keyframes neonLaser {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 200%;
    }
}

.goal-column:first-of-type {
    position: relative;
    z-index: 1;
}

.goal-column:first-of-type::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, 
    #ff00ff, #00ffff, #ff00ff, /* Magenta to Cyan to Magenta */
    transparent 40%, transparent 60%, 
    #ff00ff, #00ffff, #ff00ff /* Magenta to Cyan to Magenta */
);
    background-size: 400% 400%;
    animation: neonLaser 8s linear infinite;
    border-radius: 5px;
    z-index: -1;
    pointer-events: none;
}

.goal-column:first-of-type::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    border-radius: 3px;
    z-index: -1;
    pointer-events: none;
}

/* Modify the existing .goal-column style */
.goal-column {
    background-color: #ffffff;
    padding: 20px;
    padding-top: 0px;
    border-radius: 3px;
    width: 30%;
    color: #000000;
    position: relative;
    overflow: visible !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.goal-column:nth-of-type(2) h2,
.goal-column:nth-of-type(3) h2 {
    background-color: #4663b3; /* Muted blue color */
    color: white;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}



/* Calculate Page Views Button */
@keyframes neonGlow {
    0%, 100% {
        box-shadow: 
            0 0 5px #ff00ff,
            0 0 10px #ff00ff,
            0 0 20px #ff00ff,
            0 0 30px #ff00ff,
            0 0 40px #ff00ff;
    }
    50% {
        box-shadow: 
            0 0 5px #00ffff,
            0 0 10px #00ffff,
            0 0 20px #00ffff,
            0 0 30px #00ffff,
            0 0 40px #00ffff;
    }
}

@keyframes rotate {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

#calculateButton {
    position: relative;
    background-color: #133ba5; /* Blue background */
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

#calculateButton::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, 
        #ff00ff, #00ffff, #ff00ff, #00ffff, #ff00ff
    );
    background-size: 200% 100%;
    z-index: -1;
    animation: rotate 4s linear infinite, neonGlow 2s infinite;
    border-radius: 5px;
    filter: blur(3px);
    opacity: 0.8;
}

#calculateButton::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background-color: #133ba5;
    z-index: -1;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

#calculateButton:hover::before {
    animation: rotate 2s linear infinite, neonGlow 1s infinite;
    filter: blur(2px);
    opacity: 0.9;
}

#calculateButton.clicked {
    background-color: #133ba5;
}

#calculateButton.clicked::before {
    animation: none;
    background: #133ba5;
}

#calculateButton.clicked::after {
    background-color: #133ba5;
}

#saveButton {
    background-color: #4a5568; /* A muted blue-gray color */
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#saveButton:hover {
    background-color: #2d3748; /* A slightly darker shade for hover */
}

#saveButton:active {
    background-color: #1a202c; /* Even darker for the active state */
}

.save-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    stroke: white;
}

/* Admin KPI Table Styles */
.admin-kpi-table {
    width: 55%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8; /* Light background for the table */
    font-size:14px;
}

.admin-kpi-table th, .admin-kpi-table td {
    padding: 6px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.admin-kpi-table th {
    background-color: #133ba5;
    color: white;
    font-weight: bold;
}

.admin-kpi-table tbody td {
    color: black; /* Set text color to black for table cells */
}

.admin-kpi-table tbody tr:nth-child(even) {
    background-color: #f0f0f0; /* Slightly darker background for even rows */
}

.admin-kpi-table tbody tr:hover {
    background-color: #e8e8e8;
}

.brands-box {
    background-color:transparent !important;
}

.filter-bar {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.filter-bar label {
    font-family: 'Poppins', sans-serif;
    margin-right: 10px;
}

#tag-filter {
    font-family: 'Poppins', sans-serif;
    padding: 5px;
    font-size: 16px;
    border-radius: 3px;
    
}

/* Growth Checklist Module Effect */

@keyframes neonLaser {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 200%;
    }
}


.checklist-module {
    /* ... existing styles ... */
    position: relative;
    z-index: 1;
    overflow: visible !important;
    transition: transform 0.3s ease;
}

.checklist-module::before {
    content: '';
    position: absolute;
    top: -4px; /* Increased from -3px for thicker effect */
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(90deg, 
        #ff00ff, #00ffff, #ff00ff, /* Magenta to Cyan to Magenta */
        transparent 30%, transparent 70%, /* Further reduced transparent area */
        #ff00ff, #00ffff, #ff00ff /* Magenta to Cyan to Magenta */
    );
    background-size: 400% 400%;
    border-radius: 12px; /* Increased to match the new size */
    z-index: -1;
    pointer-events: none;
    opacity: 0; /* Start with the effect invisible */
    transition: opacity 0.3s ease;
}

.checklist-module::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff; /* Or whatever your module's background color is */
    border-radius: 8px; /* Should match the module's border-radius */
    z-index: -1;
}

.checklist-module:hover {
    transform: translateY(-5px);
}

.checklist-module:hover::before {
    opacity: 1; /* Make the effect visible on hover */
    animation: neonLaser 4s linear infinite ; /* Always animating, even before hover */
}

/* Sprint Boxes */

.sprint-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px auto;
    max-width: 1200px;
}
.sprint-box {
    width: 300px;
    height: 280px;
    border: 2px dashed #ccc;
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #ccc;
    text-transform: uppercase;
}

.sprint-box .checklist-module {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center align content vertically */
    font-weight: normal;
    text-transform: none;
    font-size: 14px;
    color: #333;
    margin-top:30px;
    padding: 15px;
    text-align: center; /* Center align text horizontally */
}

.sprint-box .checklist-module .module-content {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center align content vertically */
}

.sprint-box .checklist-module h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
}

.sprint-box .checklist-module p {
    margin-bottom: 10px;
}

.sprint-box .checklist-module {
    padding-top:30px;
}

.sprint-box .checklist-module {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
}

.sprint-box .button-container {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.sprint-box .mark-complete-btn,
.sprint-box .remove-btn {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 5px 5px;
    font-size: 10px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-align: center;
}

.sprint-box .mark-complete-btn {
    background-color: #28a745;
    color: white;
}

.sprint-box .remove-btn {
    background-color: #dc3545;
    color: white;
}
// ... rest of the existing styles ...

.sprint-box .checklist-module .module-content {
    flex-grow: 1;
    overflow-y: auto;
}


.mark-complete-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
}

.button-container {
    display: flex;
    gap: 10px; /* Space between buttons */
    margin-top: 10px;
}

.add-sprint, .add-to-rocks {
    background-color: rgb(1, 25, 136);
    color: white;
    padding: 5px 6px; /* Smaller padding for smaller buttons */
    cursor: pointer;
    font-size: 12px; /* Consistent font size for both buttons */
    flex-grow: 1;
    text-align: center;
    border: none;
    border-radius: 4px;
}

.add-sprint:hover, .add-to-rocks:hover {
    background-color: #050364;
}

.add-to-rocks {
    background-color: #050364;
}

.add-sprint {
    background-color: #007a1b;
}

.add-sprint:hover {
    background: #0056b3; /* Darker blue on hover */
}

.sprint-box:empty::before {
    content: attr(data-text);
}

#sprint-box-1:empty::before {
    content: "Sprint #1";
}

#sprint-box-2:empty::before {
    content: "Sprint #2";
}

#sprint-box-3:empty::before {
    content: "Sprint #3";
}


.sprint-box .checklist-module .module-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px;
}

.sprint-box .button-container {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.mark-complete-btn,
.remove-btn {
    flex: 1;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 4px;
    border: none;
    color: white;
}

.mark-complete-btn {
    background-color: #097e26 !important;
}

.remove-btn {
    background-color: #a00414 !important;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes rise {
    0% { transform: translateY(0) scale(1); opacity: 0.8; }
    100% { transform: translateY(-200px) scale(0); opacity: 0; }
}

@keyframes launch {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200vh); }
}

.shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) infinite;
}

.blur-background {
    filter: blur(5px);
    transition: filter 0.5s ease-in-out;
}
.filter-bar {
font-family: 'Poppins', sans-serif;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 15px; /* Reduced gap between filter items */
}

.tag-filter-group {
display: flex;
align-items: center;
gap: 5px; /* Reduced gap between checkbox and label */
}

.filter-bar label {
font-family: 'Poppins', sans-serif;
margin-right: 0; /* Remove right margin from labels */
}

#tag-filter {
font-family: 'Poppins', sans-serif;
padding: 5px;
font-size: 16px;
border-radius: 3px;
}

/* Optional: Style the checkboxes for better visibility */
.tag-filter-group input[type="checkbox"] {
margin: 0;
vertical-align: middle;
}

.preload-buttons {
    display: flex;
    justify-content: flex-start; 
    margin-top: 10px;
}

.preload-tasks-btn {
    padding: 2px 5px;
    background-color: transparent;
    color: #ffffff; /* Same color as the "Add Task" button */
    border: 1px solid #ffffff;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    margin: 5px;
    width:200px;
}

.preload-tasks-btn:hover {
    background-color: #0026a1;
    color: white;
}

.task-templates-header h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Existing styles for preload buttons can remain the same */

.add-to-rocks.in-progress {
    background-color: #dc3545/* Green color for "In Progress" */
    color: white;
}

.add-to-rocks.in-progress:hover {
    background-color: #dc3545; /* Red color for "Remove" */
}

.add-to-rocks.in-progress span {
    display: inline;
}

.add-to-rocks.in-progress:hover span {
    display: none;
}

.checklist-module {
    position: relative;
    padding-top: 30px; /* Add space for the goal text */
}

@keyframes neonFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.added-to-goals-text {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        90deg, 
        #2846a7, #cb34d0, #2878a7, #390697
    );
    background-size: 300% 100%;
    color: white;
    padding: 4px 5px;
    font-size: 10px;
    text-align: center;
    animation: neonFlow 3s ease infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

.checklist-module.added-to-goals {
    background-color: #e8f5e9;
}

.added-text {
    font-style: italic;
    color: #4caf50;
    margin-top: 10px;
}

.clear-goal {
    position: absolute;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    color: #888;
    transition: color 0.3s ease;
}

.clear-goal:hover {
    color: #f44336;
}





.checklist-module {
    position: relative;
    overflow: hidden;
}

@keyframes neonFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.complete-overlay {
    position: absolute;
    top: 0;
    border-radius: 5px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        rgba(41, 0, 255, 0.9),
        rgba(63, 33, 172, 0.9),
        rgba(0, 132, 255, 0.9),
        rgba(0, 119, 255, 0.9)
    );
    background-size: 300% 300%;
    animation: neonFlow 6s ease infinite;
    color: white;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    pointer-events: none;
}

.done-button,
.undo-button {
    position: absolute;
    bottom: 0px;
    right: 10px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #133ba5;
    transition: color 0.3s ease;
    z-index: 2;
    text-align: right;
}

.done-button:hover {
    color: #0056b3;
    background:none;
}

.undo-button {
    color: #ffffff;
}

.undo-button:hover {
    color: #ffffff;
    background:none;
}


.done-button-container {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
}

/*Done*/
.checkmark-button-container {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.checkmark-button {
    background-color: #cecece;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 16px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.checkmark-button:hover {
    background-color: #0056b3;
}

.module-overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1; /* Lower z-index so the undo button can appear above */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
    font-size: 2em;
    font-family: 'Poppins', sans-serif;
}

.module-overlay.active {
    display: flex;
}

.module-overlay .neon-border {
    padding: 6px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 4px;
    box-shadow: none;
    border: none;
}


.undo-button {
    background-color: #1c4da7;
    border: none;
    cursor: pointer;
    color: white;
    font-size: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 5px;
    right: 10px;
    z-index: 2; /* Higher z-index so it appears above the overlay */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.undo-button:hover {
    background-color: #c82333;
}

.undo-button i {
    font-size: 10px;
}

.neon-border {
    outline: 1px solid #ffffff;
    font-size:16px;
    padding:4px;
    border-radius: 0px;
}

.filter-bar select {
    padding: 5px 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
}

.filter-bar select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}



/* Modern scrollbar styles */
.kpi-table-container {
    scrollbar-width: thin;
    scrollbar-color: #787879 #c4c4c4;
}

.kpi-table-container::-webkit-scrollbar {
    width: 8px;
}

.kpi-table-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.kpi-table-container::-webkit-scrollbar-thumb {
    background-color: #05216e;
    border-radius: 4px;
    border: 2px solid #f0f0f0;
}

.kpi-table-container::-webkit-scrollbar-thumb:hover {
    background-color: #0d2b7a;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Custom scrollbar styles */
.custom-scrollbar .kpi-table-container {
    max-height: 70vh; /* Adjust this value as needed */
    overflow-y: auto;
}

.custom-scrollbar .kpi-table-container::-webkit-scrollbar {
    width: 12px;
}

.custom-scrollbar .kpi-table-container::-webkit-scrollbar-track {
    background: #1e1e1e;
    border-radius: 10px;
}

.custom-scrollbar .kpi-table-container::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #00aeff, #a200ff);
    border-radius: 10px;
    border: 2px solid #1e1e1e;
}

.custom-scrollbar .kpi-table-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #0095dd, #8a00dd);
}

/* Metrics Page Styles */
.metrics-container {
    max-width: 1200px;
    margin: 0;
    padding: 20px 0;
    margin-left: 20px;
}

.brand-selector {
    margin-bottom: 30px;
    text-align: center;
}

.brand-selector label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.brand-dropdown {
    width: 300px;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background-color: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.brand-dropdown:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.metrics-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-height: 600px;
}

.loading-message, .no-sheet-message {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    text-align: center;
    color: #666;
    font-size: 18px;
}

.loading-message p, .no-sheet-message p {
    margin: 0;
    padding: 20px;
}

.sheet-container {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

#google-sheet-iframe {
    width: 100%;
    height: 560px;
    border: none;
    display: block;
}

/* Responsive design for Metrics page */
@media (max-width: 768px) {
    .metrics-container {
        padding: 15px;
    }
    
    .brand-dropdown {
        width: 100%;
        max-width: 300px;
    }
    
    #google-sheet-iframe {
        height: 420px;
    }
}

@media (max-width: 480px) {
    .metrics-container {
        padding: 10px;
    }
    
    .brand-selector label {
        font-size: 16px;
    }
    
    .brand-dropdown {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    #google-sheet-iframe {
        height: 350px;
    }
}

/* Comment Edit/Delete Styles */
.comment-item {
    position: relative;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.comment-actions {
    margin-left: auto;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.comment-item:hover .comment-actions {
    opacity: 1;
}

.comment-edit-btn,
.comment-delete-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.comment-edit-btn:hover {
    color: #0575ed;
    background-color: rgba(5, 117, 237, 0.1);
}

.comment-delete-btn:hover {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

.comment-edit-form {
    margin-top: 10px;
}

.comment-edit-textarea {
    width: 100%;
    min-height: 80px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    box-sizing: border-box;
}

.comment-edit-textarea:focus {
    outline: none;
    border-color: #0575ed;
    box-shadow: 0 0 0 3px rgba(5, 117, 237, 0.1);
}

.comment-edit-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.comment-save-btn,
.comment-cancel-btn {
    padding: 6px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.comment-save-btn {
    background-color: #0575ed;
    color: white;
}

.comment-save-btn:hover {
    background-color: #0461c4;
}

.comment-cancel-btn {
    background-color: #f0f0f0;
    color: #333;
}

.comment-cancel-btn:hover {
    background-color: #e0e0e0;
}

.comment-text {
    white-space: pre-wrap;
    word-wrap: break-word;
}
