:root {
    --primary-color: #dc7228;
    --primary-dark: #b85c20;
    --text-dark: #171717;
    --text-medium: #495057;
    --text-light: #6c757d;
    --border-color: #ced4da;
    --light-bg: #f8f9fa;
    --white: #fff;
    --success-bg: #d4edda;
    --success-text: #155724;
    --error-bg: #f8d7da;
    --error-text: #721c24;
}

body,html{
    overflow-x: hidden;
    /* scrollbar-width: thin; */
}

/* Extra Huge large desktops */
@media (min-width: 1920px) {
  .container {
    max-width: 1440px; } }

/* Extra Huge large desktops */
@media (min-width: 1680px) and (max-width: 1919px) {
  .container {
    max-width: 1440px; } }

/* Extra Huge large desktops */
@media (min-width: 1600px) and (max-width: 1679px) {
  .container {
    max-width: 1440px; } }

/* Extra large desktops and mac laptops*/
@media (min-width: 1400px) and (max-width: 1599px) {
  .container {
    max-width: 1170px; } }

@media (min-width: 1280px) and (max-width: 1399px) {
  .container {
    max-width: 1170px; } }

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 100%; } }

/* Landscape tablets and ipad */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 100%; } }

/* Landscape phones and portrait tablets */
@media (min-width: 544px) and (max-width: 767px) {
  .container {
    min-width: 100%; } }

/* Landscape phones and portrait tablets */
@media (min-width: 361px) and (max-width: 543px) {
  .container {
    max-width: 100%; } }

/* Smaller phones */
@media (max-width: 360px) {
  .container {
    max-width: 100%; } }

/* Header Base Styles */
.fp-header {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all 0.3s ease;
}
.fp-header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-light {
    background-color: #ffffff;
    color: #000000;
}

.header-dark {
    background-color: #1a1a1a;
    color: #ffffff;
}

.fp-profile-header {
    display: flex;
    align-items: center;
    padding: 16px 32px;
}

/* Avatar */
.fp-profile-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

/* Name & Badge */
.fp-profile-name-wrapper {
    display: flex;
    align-items: center;
}

.fp-profile-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.fp-profile-badge {
    width: 30px;
    height: 30px;
    margin-left: 8px;
}

/* Buttons */
.fp-profile-buttons {
    display: flex;
    justify-content: space-around;
    padding: 16px;
    border-bottom: 1px solid #e0e0e0;
}

.fp-btn {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    min-width: 100px;
    cursor: pointer;
    border: 0;
}

.fp-btn-light {
    background-color: #f1f1f1;
    color: #333;
}

.fp-btn-verify {
    background: linear-gradient(90deg, rgba(220, 114, 40, 1) 50%, #000 100%);
    color: #fff;
}

.fp-btn-verify.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    /* pointer-events: none; */
}


/* Container Layout */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.company-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.company-logo img {
    height: 55px;
    width: auto;
}

/* Navigation Links - Inline Style */
.fp-header__links {
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.fp-header__link {
    color: #495057;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.fp-header__link:hover,
.fp-header__link.active {
    color: #dc7228;
}

.fp-header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #dc7228;
    transition: width 0.3s ease;
}

.fp-header__link:hover::after,
.fp-header__link.active::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Login/Signup */
.fp-navigation__auth-link {
    font-size: 14px;
    color: #000;
    text-decoration: none;
}
.fp-navigation__auth-link:hover {
    color: #dc7228;
}
/* User Dropdown */
.fp-navigation__user-toggle {
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: #000;
    cursor: pointer;
}

.fp-navigation__user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.fp-navigation__user-name {
    font-size: 0.875rem;
    margin-right: 0.25rem;
}

.fp-navigation__user-item {
    padding: 0.5rem 1rem;
    color: #212529;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-header {
    color: #6c757d !important;
    background-color: transparent !important;
    border: none !important;
}

.dropdown-item:hover {
    background-color: #dc7228;
}

.view-all-notification {
    color: #dc7228 !important;
}

.view-all-notification:hover {
    color: #fff !important;
}

.notification-icon {
    position: relative;
    cursor: pointer;
}

.notification-icon i {
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.notification-icon i:hover {
    color: #dc7228;
}

.num-count {
    position: absolute;
    user-select: none;
    cursor: default;
    font-size: 0.6rem;
    background: #e74c3c;
    width: 1.2rem;
    height: 1.2rem;
    color: #ecf0f1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    top: -0.33rem;
    right: -.66rem;
    box-sizing: border-box;
    animation: pulse 1.5s infinite;
}
.notification-wrapper {
    position: relative;
}

.notification-popup {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 400px;
    z-index: 100;
    overflow: hidden;
}

.popup-header {
    background: #dc7228;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h3 {
    font-size: 1.2rem;
    font-weight: 500;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.notification-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
}

.notification-item {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.notification-item:hover {
    background-color: #f9f9f9;
}

.notification-item.unread {
    background-color: #f0f7ff;
}

.no-notifications {
    text-align: center;
    padding: 20px;
    color: #6c757d;
}

.notification-content-wrapper {
    display: flex;
}

.notification-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    flex-shrink: 0;
}

.notification-content {
    flex-grow: 1;
}

.notification-sender {
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
}

.notification-sender span {
    color: #000;
}

.notification-sender .notification-time {
    font-size: 0.75rem;
    color: #888;
}

.notification-text {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
    color: #555;
}

.notification-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 8px;
    padding-left: 57px;
}

.action-btn {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    font-size: 0.8rem;
    transition: color 0.2s;
    padding: 3px 8px;
    border-radius: 4px;
}

.action-btn:hover {
    color: #dc7228;
    background-color: #f0f0f0;
}

.view-all {
    display: block;
    text-align: center;
    color: #dc7228 !important;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 0;
    border-top: 1px solid #eaecf4;
    font-size: 0.9rem;
}

.view-all:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .notification-popup {
        width: 350px;
    }
}

@media (max-width: 600px) {
    .notification-popup {
        width: 300px;
    }
}


/* Footer Base Styles */
.fp-footer {
    background-color: #000;
    color: #fff;
    padding: 3rem 0 1.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.fp-footer a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.fp-footer a:hover {
    color: #dc7228;
}

.fp-footer__heading {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    position: relative;
    display: inline-block;
}

.fp-footer__heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #dc7228;
}

/* Logo Section */
.fp-footer__logo img {
    width: 13%;
    margin-bottom: 1.5rem;
}

/* Navigation Links */
.fp-footer__nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fp-footer__nav-item {
    margin-bottom: 0.75rem;
}

.fp-footer__nav-link {
    display: inline-block;
    padding: 0.25rem 0;
    font-size: 0.9375rem;
}

/* Social Icons */
.fp-footer__social {
    display: flex;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.fp-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.fp-footer__social-link:hover {
    background: #dc7228;
    transform: translateY(-3px);
}

.fp-footer a.fp-footer__social-link:hover {
    color: unset !important;

}
.fp-footer a.fp-footer__cta-btn:hover {
    color: #000 !important;
}

/* Mailchimp Form */
#mc_embed_signup {
    clear:left;
    font:14px Helvetica,Arial,sans-serif;
}

#mc-embedded-subscribe {
    background: linear-gradient(90deg, rgba(220, 114, 40, 1) 70%, #000 100%);
    border-radius: 35px!important;
    font-size: 13px;
    border: 0;
    color: #fff;
    padding: 5px 10px;
    margin-top: 10px;
}

#mc_embed_signup .mc-field-group {
    width: 100% !important;
}

#mc_embed_signup .mc-field-group label:hover {
    color: #dc7228 !important;
}

#mc_embed_signup .asterisk:hover {
    color: #d73038 !important;
}

#mc_embed_signup .mc-field-group input {
    width: 90%;
    height: 35px;
    outline: 0;
}

#mc_embed_signup .mc-field-group input:focus {
    border-color: #dc7228;
    box-shadow: 0 0 0 0.25rem rgba(220, 114, 40, 0.25);
}

/* CTA Section */
.fp-footer__cta {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.fp-footer__cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.fp-footer__cta-text {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.fp-footer__cta-btn {
    background: linear-gradient(90deg, rgba(220, 114, 40, 1) 70%, #000 100%);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.fp-footer__cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(220, 114, 40, 0.3);
}

/* Footer Bottom */
.fp-footer__bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

/* Review Modal */
.fp-review-modal .modal-content {
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.fp-review-modal .btn-close {
    filter: invert(1);
}

.fp-review-modal .rate {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.fp-review-modal .rate input {
    display: none;
}

.fp-review-modal .rate label {
    font-size: 1.5rem;
    color: #ccc;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0 0.25rem;
}

.fp-review-modal .rate label:hover,
.fp-review-modal .rate label:hover ~ label,
.fp-review-modal .rate input:checked ~ label {
    color: #fbbc05;
}

/* Navigation Base Styles */
.fp-navigation {
    background-color: #000;
    color: #fff;
    padding: 0.5rem 0;
    position: relative;
    z-index: 1020;
}
.fp-navigation__links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

/* Left Section */
.fp-navigation__left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.fp-navigation__link {
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    position: relative;
}

.fp-navigation__link:hover, .fp-navigation__link:hover span {
    color: #dc7228 !important;
}

.fp-navigation__link--animated:hover .fp-navigation__link-text {
    transform: translateX(5px);
}

.fp-navigation__link-text {
    transition: transform 0.3s ease;
}

/* Center Section - Search */
.fp-navigation__center {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.fp-navigation__centered-search {
    position: relative;
    width: 100%;
}

.fp-navigation__centered-search-input {
    width: 100%;
    padding: 0.5rem 1rem 0.5rem 2.5rem;
    border-radius: 50px;
    border: none;
    background-color: #fff;
    color: #3a3a3a;
    transition: all 0.3s ease;
}

.fp-navigation__centered-search-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(220, 114, 40, 0.5);
    background-color: #fff;
}

.fp-navigation__centered-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

/* Right Section */
.fp-navigation__right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Notifications */
.fp-navigation__notifications {
    position: relative;
}

.fp-navigation__search .dropdown-menu {
    top: 0;
    left: auto;
    right: 0;
}

.fp-navigation__notification-icon {
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 5px;
    display: flex;
}

.fp-navigation__notification-icon:hover {
    color: #dc7228;
}

.fp-navigation__notification-icon::after, .fp-navigation__search-icon::after {
    content: none !important;
}

/* Quote Button */
.fp-header__daily-quote-btn {
    background: linear-gradient(90deg, #dc7228 50%, #000 100%);
    color: #fff;
    border: none;
    border-radius: 35px;
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.fp-header__daily-quote-btn:hover {
    background: linear-gradient(90deg, #dc7228 70%, #000 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 114, 40, 0.3);
}

/* Toggle Button */
.fp-navigation__toggle-image {
    background: none;
    border: none;
}
.fp-navigation__toggle-btn {
  background-color: #000;
  border-color: #fff;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 5px;
  padding: 0 10px;
}

/* Dropdown Menu */
.fp-notification-item {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.fp-notification-item:hover {
    background-color: #f8f9fa;
}

.view-all-notification {
    color: #dc7228;
    font-weight: 500;
}

/* Modal Styles */
.fp-header__modal .modal-content {
    border: 6px solid #dc7228;
    border-radius: 12px;
    overflow: hidden;
}

.fp-header__modal-header {
    padding: 1.5rem;
    text-align: center;
    border-bottom: none;
}

.fp-header__modal-title {
    font-weight: 700;
    margin: 0;
    background: linear-gradient(90deg, #dc7228 50%, #000 100%);
    border-radius: 10px;
    color: #fff;
    font-size: 1.25rem;
}

.fp-header__modal-body {
    padding: 1.5rem;
    text-align: center;
}

.fp-header__modal-message {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 200px;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
}

.fp-header__modal-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.fp-header__modal-text {
    position: relative;
    color: #fff;
    z-index: 1;
}

.fp-header__modal-close {
    background: linear-gradient(90deg, #dc7228 50%, #000 100%);
    color: #fff;
    border: none;
    border-radius: 35px;
    padding: 0.5rem 1.5rem;
    margin-top: 1rem;
}

.fp-header__modal-close:hover {
    color: #fff;
}

/* Off-canvas Menu */
.offcanvas  {
    background-color: #000;
}

.offcanvas-body {
    scrollbar-width: thin;
}

.fp-offcanvas__menu {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
}

.offcanvas .btn-close:focus {
    outline: 0;
    box-shadow: none;
}

.offcanvas .btn-close i {
    color: #fff;
    font-size: 1.5rem;
}

.offcanvas-header h5.offcanvas-title {
    color: #fff !important;
}

.fp-offcanvas__item {
    margin-bottom: 0.5rem;
}

.fp-offcanvas__link {
    display: block;
    padding: 0.75rem 1rem;
    color: #fff !important;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.fp-offcanvas__link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.fp-offcanvas__icon {
    margin-right: 0.75rem;
    width: 1.25rem;
    text-align: center;
}

.offcanvas-backdrop {
    background-color: transparent !important;
}
/* Animation for notification badge */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.badge {
    animation: pulse 1.5s infinite;
}

/* Responsive Adjustments */

@media (max-width: 575.98px) {
    .header-top {
        gap: 0;
    }
    .company-logo img { 
        height: 40px;
    }
    .fp-header__links {
        gap: 5px;
    }
    .fp-header__link {
        font-size: 0.75rem;
    }
    .fp-navigation__auth-link {
        font-size: 12px;
    }
    .header-actions {
        gap: 0;
    }
    .fp-navigation__user-toggle {
        gap: 0;
        padding: 5px;
    }
    .fp-navigation__toggle-btn {
        font-size: 1rem;
        padding: 0 5px;
    }

    .fp-navigation {
        padding: 0.5rem 0;
    }

    .fp-navigation__right {
        gap: 1rem;
    }

    .fp-navigation__notification-icon {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .header-actions {
        gap: 0;
    }
    .fp-navigation__user-avatar {
        width: 32px;
        height: 32px;
    }
    .fp-navigation__user-toggle {
        gap: 0;
        padding: 10px;
    }

    .fp-footer {
        text-align: center;
    }

    .fp-footer__heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .fp-footer__social {
        justify-content: center;
    }

    .fp-footer__col {
        margin-bottom: 2rem;
    }

    #mc_embed_signup .mc-field-group input {
        width: 60% !important;
        height: 30px;
    }

    #mc_embed_signup {
        margin: 0 auto;
        text-align: center;
    }

    #mc_embed_signup .mc-field-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #mc_embed_signup .clear.foot {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #mc_embed_signup input#mc-embedded-subscribe {
        width: auto;
        margin-top: 10px;
    }

    .fp-footer__logo img {
        max-width: 50px;
    }

    .fp-navigation__left {
        gap: 1rem;
    }

    .fp-navigation__link-text {
        font-size: 0.75rem
    }
}

/* Flash Messages */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
    line-height: 1.5;
    border: 1px solid transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.alert-dismissible {
    padding-right: 3.5rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-color: #bee5eb;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border-color: #ffeeba;
}

.btn-close {
    padding: 0.5rem;
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    border: 0;
    border-radius: 0.25rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
    position: relative;
}

.btn-close:hover {
    opacity: 1;
}

/* Context-specific close button colors */
.alert-success .btn-close {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23155724'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

.alert-danger .btn-close {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23721c24'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

.alert-info .btn-close {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c5460'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

.alert-warning .btn-close {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23856404'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

/* Animation for alert dismissal */
.fade {
    transition: opacity 0.15s linear;
}

.fade.show {
    /* opacity: 1; */
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .alert {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .alert-dismissible {
        padding-right: 3rem;
    }
}
