/**
 * User Pages Stylesheet
 * Consolidated CSS for all user pages: all_vendors, favorites, home, messages, settings, vendor_public_profile
 * Color Palette:
 * - Orange: #ffa31a
 * - Grey: #808080
 * - Dark Grey: #292929
 * - Near Black: #1b1b1b
 * - White: #ffffff
 */

/* =====================================================
   PROFILE DROPDOWN STYLES (Shared across pages)
   ===================================================== */
.profile-dropdown-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    z-index: 1001;
}

.profile-pic {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid transparent;
    transition: border-color 0.2s ease-in-out;
}

.profile-pic:hover {
    border-color: #ffa31a;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #292929;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.4);
    z-index: 1002;
    right: 0;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-menu a {
    color: #ffffff;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

.dropdown-menu a:hover {
    background-color: #ffa31a;
    color: #1b1b1b;
}

.dropdown-menu.show {
    display: block !important;
}

.dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

/* =====================================================
   USER PAGE HEADER STYLES
   ===================================================== */
.user-page-header {
    width: 100%;
    background: #1b1b1b;
    padding: 18px 0 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #292929;
}

.user-page-header-title {
    font-family: 'Mona Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    padding-left: 40px;
}

.user-page-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-right: 40px;
}

/* =====================================================
   ALL VENDORS PAGE STYLES
   ===================================================== */
.vendors-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #1b1b1b;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.vendors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

.vendor-card {
    background-color: #292929;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vendor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    border-color: #ffa31a;
}

.vendor-card-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #ffa31a;
}

.vendor-card-name {
    font-size: 1.2em;
    font-weight: 600;
    color: #ffa31a;
    word-break: break-word;
}

.vendors-page-title {
    text-align: center;
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 2.5em;
    font-weight: 700;
}

.no-vendors-message {
    text-align: center;
    color: #808080;
    padding: 40px 0;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .vendors-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .vendors-page-title {
        font-size: 2em;
    }

    .vendor-card-image {
        width: 80px;
        height: 80px;
    }
}

/* =====================================================
   HOME/DASHBOARD PAGE STYLES
   ===================================================== */
.home-container {
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 8px;
}

.welcome-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #292929;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.welcome-section h1 {
    color: #ffffff;
    font-size: 2.8em;
    margin-bottom: 10px;
    font-weight: 700;
}

.welcome-section p {
    color: #808080;
    font-size: 1.1em;
    line-height: 1.6;
}

.welcome-section .user-role {
    font-weight: 600;
    color: #ffa31a;
    text-transform: capitalize;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 10px 0;
}

.dashboard-card {
    background-color: #292929;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    border-color: #ffa31a;
}

.dashboard-card .icon {
    font-size: 3.5em;
    color: #ffa31a;
    margin-bottom: 15px;
}

.dashboard-card h3 {
    font-size: 1.4em;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 600;
}

.dashboard-card p {
    font-size: 0.95em;
    color: #808080;
    line-height: 1.4;
}

/* Dashboard Responsive */
@media (max-width: 768px) {
    .home-container {
        margin: 20px auto;
        padding: 15px;
    }

    .welcome-section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .welcome-section h1 {
        font-size: 2.2em;
    }

    .welcome-section p {
        font-size: 1em;
    }

    .dashboard-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .dashboard-card {
        padding: 20px;
        min-height: 120px;
    }

    .dashboard-card .icon {
        font-size: 3em;
        margin-bottom: 10px;
    }

    .dashboard-card h3 {
        font-size: 1.2em;
    }

    .dashboard-card p {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .welcome-section {
        border-radius: 0;
        box-shadow: none;
        padding: 15px;
    }

    .home-container {
        padding: 0 10px;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* =====================================================
   FAVORITES PAGE STYLES
   ===================================================== */
.favorites-container {
    max-width: 100%;
    margin: 2.5rem auto;
    padding: 2rem;
    border-radius: 8px;
    background-color: #1b1b1b;
}

.favorites-container h1 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: clamp(1.5rem, 4vw, 2.5em);
    font-weight: 700;
}

.favorites-search-form {
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.favorites-search-container {
    display: flex;
    align-items: center;
    background: #292929;
    border-radius: 50px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.2s ease;
}

.favorites-search-container:focus-within {
    border-color: #ffa31a;
    box-shadow: 0 4px 15px rgba(255, 163, 26, 0.2);
}

.favorites-search-input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
    color: #ffffff;
}

.favorites-search-input::placeholder {
    color: #808080;
}

.favorites-search-button {
    background: #ffa31a;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1b1b1b;
}

.favorites-search-button:hover {
    background: #e8940f;
    transform: scale(1.05);
}

.favorites-search-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.no-favorites {
    text-align: center;
    padding: 2.5rem 1rem;
    font-size: 1.1em;
    color: #808080;
    background-color: #292929;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.no-favorites a {
    color: #ffa31a;
    text-decoration: none;
    font-weight: 600;
}

.no-favorites a:hover {
    text-decoration: underline;
}

/* Product Cards (Used in Favorites) */
.product-card {
    background-color: #292929;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    border-color: #ffa31a;
}

.product-card a {
    text-decoration: none;
    color: inherit;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1b1b1b;
    border-radius: 8px 8px 0 0;
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1rem;
}

.product-card-vendor-info {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.product-card-vendor-logo {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.7rem;
    border: 1px solid #3a3a3a;
}

.product-card-title {
    font-size: 1.1em;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.remove-favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(41, 41, 41, 0.9);
    border: none;
    border-radius: 50%;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    color: #dc3545;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
    z-index: 10;
}

.remove-favorite-btn:hover {
    background-color: #dc3545;
    color: #fff;
    transform: scale(1.1);
}

/* Favorites Responsive */
@media (max-width: 1024px) {
    .favorites-container {
        max-width: 98vw;
        padding: 1.2rem;
    }

    .favorites-grid {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .favorites-container {
        margin: 1.2rem auto;
        padding: 0.7rem;
    }

    .favorites-container h1 {
        font-size: 1.5em;
        margin-bottom: 1.2rem;
    }

    .favorites-search-form {
        max-width: 100%;
    }

    .favorites-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 0.7rem;
    }

    .no-favorites {
        padding: 1.2rem 0.5rem;
        font-size: 1em;
    }

    .product-card-image-wrapper {
        height: 140px;
    }
}

@media (max-width: 600px) {
    .favorites-container {
        padding: 0.3rem;
    }

    .favorites-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .product-card-image-wrapper {
        height: 110px;
    }

    .profile-pic {
        width: 2.2rem;
        height: 2.2rem;
    }

    .remove-favorite-btn {
        width: 1.7rem;
        height: 1.7rem;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .favorites-container {
        margin: 0.5rem auto;
        padding: 0.1rem;
    }

    .favorites-grid {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .product-card-image-wrapper {
        height: 80px;
    }

    .profile-pic {
        width: 1.7rem;
        height: 1.7rem;
    }

    .remove-favorite-btn {
        width: 1.2rem;
        height: 1.2rem;
        font-size: 0.9em;
    }

    .dropdown-menu {
        min-width: 140px;
        font-size: 0.9em;
    }
}

/* Header Responsive */
@media (max-width: 600px) {
    .user-page-header {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 10px;
        padding-right: 10px;
    }

    .user-page-header-title {
        padding-left: 0;
        font-size: 1.1rem;
    }

    .user-page-header-actions {
        padding-right: 0;
        gap: 10px;
    }
}

/* =====================================================
   SETTINGS PAGE STYLES
   ===================================================== */
.settings-outer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - var(--header-height, 60px) - var(--footer-height, 80px));
    box-sizing: border-box;
    width: 100%;
    background-color: #1b1b1b;
    padding: 20px;
    border-radius: 16px;
}

.settings-form-card {
    background-color: #292929;
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto;
    padding: 48px 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.settings-card-title {
    font-family: 'Mona Sans', sans-serif;
    color: #ffffff;
    margin-bottom: 32px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.settings-form-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.settings-main-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
    max-width: 600px;
    margin: 0 auto;
}

.settings-fields-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.settings-pfp-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px;
    margin: 0 auto;
}

.settings-tab-nav {
    display: flex;
    justify-content: space-between;
    background-color: #1b1b1b;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 5px;
    gap: 5px;
}

.tab-button {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background-color: transparent;
    color: #808080;
    font-family: 'Mona Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tab-button:hover {
    background-color: rgba(255, 163, 26, 0.1);
    color: #ffffff;
}

.tab-button.active {
    background-color: #ffa31a;
    color: #1b1b1b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.settings-tab-content {
    background-color: #292929;
    padding: 0;
    border-radius: 8px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-out;
    padding: 20px 0;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.settings-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.settings-form-group {
    margin-bottom: 0;
    text-align: left;
    position: relative;
}

.settings-form-group label {
    font-family: 'Mona Sans', sans-serif;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff;
    font-size: 14px;
}

.settings-input-field {
    font-family: 'Mona Sans', sans-serif;
    width: 100%;
    max-width: 600px;
    min-width: 0;
    padding: 14px 16px;
    border: 1.5px solid #3a3a3a;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    box-sizing: border-box;
    transition: all 0.2s ease;
    background-color: #1b1b1b;
    color: #ffffff;
    outline: none;
}

.settings-input-field:focus {
    border-color: #ffa31a;
    box-shadow: 0 0 0 3px rgba(255, 163, 26, 0.1);
}

.settings-input-field::placeholder {
    color: #808080;
}

.validation-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    display: none;
}

.settings-input-field+.validation-icon {
    top: 60%;
}

.validation-icon.valid {
    color: #22c55e;
    display: block;
}

.validation-icon.invalid {
    color: #ef4444;
    display: block;
}

/* Profile Picture Container */
.profile-picture-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}

.profile-picture-preview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #3a3a3a;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: border-color 0.2s ease;
    cursor: pointer;
}

.profile-picture-preview:hover {
    border-color: #ffa31a;
    transform: scale(1.05);
}

.profile-picture-upload-label {
    font-family: 'Mona Sans', sans-serif;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}

.profile-picture-input {
    display: none;
}

.custom-file-upload {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    background-color: #ffa31a;
    color: #1b1b1b;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
    border: none;
}

.custom-file-upload:hover {
    background-color: #e8940f;
    transform: translateY(-1px);
}

.action-submit-btn {
    font-family: 'Mona Sans', sans-serif;
    background: #ffa31a;
    color: #1b1b1b;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-top: 32px;
    box-shadow: none;
}

.action-submit-btn:hover {
    background: #e8940f;
    transform: translateY(-1px);
    box-shadow: none;
}

/* Password Toggle Styles */
.settings-password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.settings-password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    color: #808080;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.settings-password-toggle:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.settings-password-toggle:focus-visible {
    outline: 2px solid #ffa31a;
    outline-offset: 2px;
    border-radius: 4px;
}

.settings-eye-icon {
    width: 20px;
    height: 20px;
}

.settings-password-wrapper .settings-input-field {
    padding-right: 44px;
}

/* Notification Styles */
.notification-message {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
}

.notification-message.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.notification-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.notification-message ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.notification-message li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.notification-message li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: inherit;
}

.notification-message li:last-child {
    margin-bottom: 0;
}

/* Alert Styles */
.alert.alert-success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
}

/* Settings Responsive */
@media (max-width: 992px) {
    .settings-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }

    .settings-pfp-column {
        order: -1;
        padding-top: 0;
    }

    .settings-form-card {
        max-width: 600px;
    }

    .settings-tab-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .tab-button {
        flex-basis: 48%;
        margin-bottom: 5px;
    }
}

@media (max-width: 768px) {
    .settings-form-card {
        padding: 32px 24px;
    }

    .settings-card-title {
        font-size: 24px;
    }

    .settings-input-field,
    .action-submit-btn,
    .custom-file-upload {
        font-size: 16px;
        padding: 12px 14px;
    }

    .profile-picture-preview {
        width: 80px;
        height: 80px;
    }

    .settings-outer-container {
        padding: 20px 16px;
    }

    .settings-form-card {
        box-shadow: none;
        border: none;
    }

    .settings-input-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .settings-main-grid {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .settings-form-card {
        padding: 24px 20px;
        margin: 0;
        max-width: 100%;
    }

    .settings-card-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .settings-form-layout {
        gap: 16px;
    }

    .settings-main-grid {
        max-width: 100%;
    }
}

/* =====================================================
   MESSAGES PAGE STYLES (Additional overrides)
   ===================================================== */
/* Note: Most message styles are in message.css */
.messages-top-bar {
    background: #1b1b1b;
    border-bottom: 1px solid #292929;
}

.messages-title {
    color: #ffffff;
}

/* =====================================================
   CONFIRMATION MODALS (Used in Favorites)
   ===================================================== */
.confirm-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #292929;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    text-align: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.confirm-modal p {
    margin-bottom: 16px;
}

.confirm-modal-yes {
    margin-right: 10px;
    padding: 8px 15px;
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.confirm-modal-yes:hover {
    background-color: #c82333;
}

.confirm-modal-no {
    padding: 8px 15px;
    background-color: #808080;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.confirm-modal-no:hover {
    background-color: #6c757d;
}

.confirm-modal-ok {
    padding: 8px 15px;
    background-color: #ffa31a;
    color: #1b1b1b;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.confirm-modal-ok:hover {
    background-color: #e8940f;
}