* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #000000; /* Pure black background */
    color: #ffffff; /* White text */
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 90px;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    max-width: 500px;
}

.header {
    padding: 20px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.1); /* Slightly visible header background */
    backdrop-filter: blur(10px);
    border-radius: 0 0 25px 25px;
    margin-bottom: 30px;
    animation: slideDown 0.8s ease-out;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #333333; /* Dark gray for logo icon background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    animation: pulse 2s infinite;
    overflow: hidden;
}

.logo-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: -webkit-linear-gradient(180deg, #ffffff, #cccccc); /* White to light gray gradient for text */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

.nav-tab {
    color: #cccccc; /* Light gray for inactive tabs */
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-tab.active {
    color: #ffffff; /* White for active tab */
}

.nav-tab.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(180deg, #ffffff, #cccccc); /* White to light gray gradient for active tab underline */
    border-radius: 2px;
    animation: expandWidth 0.3s ease-out;
}

.search-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.search-input:focus {
    border-color: #ffffff; /* White border on focus */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); /* White shadow on focus */
    transform: translateY(-2px);
}

.search-input::placeholder {
    color: #aaa;
}

.services-section {
    animation: slideUp 0.8s ease-out 0.4s both;
}

.filter-dropdown {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 8px 15px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-dropdown:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 10px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent); /* White shimmer effect */
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3); /* Lighter border on hover */
}

.service-card.selected {
    border-color: #ffffff; /* White border for selected card */
    background: rgba(255, 255, 255, 0.1); /* Lighter background for selected card */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3); /* White shadow for selected card */
}

.service-card.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 15px;
    color: #ffffff; /* White checkmark */
    font-size: 18px;
    font-weight: bold;
    animation: checkmark 0.3s ease-out;
}

.service-logo {
    width: 50px;
    height: 50px;
    background: #333333; /* Dark gray for service logo background */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-logo {
    transform: scale(1.1) rotate(5deg);
}

.service-info {
    flex: 1;
}

.service-name {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #ffffff;
}

.service-duration {
    font-size: 12px;
    color: #cccccc; /* Light gray for duration text */
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-duration svg {
    width: 14px;
    height: 14px;
    fill: #cccccc; /* Light gray for SVG icon */
}

.service-price {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff; /* White for price text */
}

.fixed-button {
    width: calc(100% - 40px);
    max-width: 460px;
    padding: 18px;
    background: linear-gradient(45deg, #666666, #999999); /* Gray gradient for inactive button */
    border: none;
    border-radius: 15px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: not-allowed;
    transition: all 0.4s ease;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    opacity: 0.6;
    z-index: 100;
    display: none;
}

.fixed-button.active {
    background: linear-gradient(180deg, #ffffff, #cccccc); /* White to light gray gradient for active button */
    color: #000000; /* Black text for active button */
    cursor: pointer;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.fixed-button.active:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4); /* White shadow on hover */
}

.fixed-button.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.2), transparent); /* Black shimmer effect */
    transition: left 0.5s ease;
}

.fixed-button.active:hover::before {
    left: 100%;
}

.fixed-bottom-buttons {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 460px;
    display: flex;
    gap: 10px;
    z-index: 100;
    background-color: #000000; /* Black background for bottom buttons */
    padding-top: 10px;
}

.step-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
    animation: slideUp 0.8s ease-out 0.6s both;
}

.step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1); /* Light transparent white for inactive steps */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    color: #ffffff; /* White text for calendar days */
}

.step.active {
    background: linear-gradient(180deg, #ffffff, #cccccc); /* White to light gray gradient for active step */
    color: #000000; /* Black text for active step */
    transform: scale(1.2);
}

.step.completed {
    background: #666666; /* Darker gray for completed step */
    color: white;
}

.step-line {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2); /* Light transparent white for inactive line */
    transition: all 0.3s ease;
}

.step-line.active {
    background: linear-gradient(180deg, #ffffff, #cccccc); /* White to light gray gradient for active line */
}

.scheduling-step {
    display: none;
    animation: slideUp 0.5s ease-out;
}

.scheduling-step.active {
    display: block;
}

.step-header {
    text-align: center;
    margin-bottom: 30px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #ffffff, #cccccc); /* White to light gray gradient for title */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-subtitle {
    color: #cccccc; /* Light gray for subtitle */
    font-size: 14px;
}

.selected-service {
    background: rgba(255, 255, 255, 0.1); /* Light transparent white background */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Light transparent white border */
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.calendar-day {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1); /* Light transparent white background */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Light transparent white border */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: #ffffff; /* White text for calendar days */
}

/* NEW: Style for completely unavailable weekdays */
.calendar-day.unavailable-weekday {
    background: rgba(255, 255, 255, 0.02); /* Even darker, more transparent */
    color: #333; /* Very dark gray for text */
    border-color: rgba(255, 255, 255, 0.05);
    cursor: not-allowed;
    opacity: 0.4;
}

/* NEW: Style for past but available weekdays (e.g., past Tuesday) */
.calendar-day.past-available-day {
    background: rgba(100, 100, 100, 0.1); /* A bit darker, more distinct gray */
    color: #888; /* Slightly lighter gray for text */
    border-color: rgba(255, 255, 255, 0.1);
    cursor: pointer; /* Keep cursor as pointer to indicate it's clickable for next week */
    opacity: 0.7;
}

.calendar-day.today {
    border-color: #ffffff; /* White border for today */
    background: rgba(255, 255, 255, 0.2); /* Lighter background for today */
}

.calendar-day.selected {
    background: linear-gradient(180deg, #ffffff, #cccccc); /* White to light gray gradient for selected day */
    color: #000000; /* Black text for selected day */
    transform: scale(1.1);
}

.calendar-day:hover:not(.past-day):not(.disabled):not(.unavailable-weekday):not(.past-available-day) { /* Added new classes to exclude hover effect */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.calendar-day.past-day,
.calendar-day.disabled {
    background: rgba(255, 255, 255, 0.05); /* Very light transparent white for past/disabled days */
    color: #555; /* Darker gray for text on past/disabled days */
    border-color: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    opacity: 0.6;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.time-slot {
    padding: 10px;
    background: rgba(255, 255, 255, 0.1); /* Light transparent white background */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Light transparent white border */
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff; /* White text for time slots */
}

.time-slot.selected {
    background: linear-gradient(180deg, #ffffff, #cccccc); /* White to light gray gradient for selected time slot */
    color: #000000; /* Black text for selected time slot */
    transform: scale(1.05);
}

.time-slot:hover:not(.past-hour):not(.disabled) {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.time-slot.past-hour,
.time-slot.disabled {
    background: rgba(255, 255, 255, 0.05); /* Very light transparent white for past/disabled hours */
    color: #555; /* Darker gray for text on past/disabled hours */
    border-color: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
    opacity: 0.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #cccccc; /* Light gray for form labels */
}

.form-input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1); /* Light transparent white background */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Light transparent white border */
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #ffffff; /* White border on focus */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); /* White shadow on focus */
}

.phone-input {
    display: flex;
    gap: 10px;
}

.country-code {
    width: 80px;
    padding: 15px 10px;
    background: rgba(255, 255, 255, 0.1); /* Light transparent white background */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Light transparent white border */
    border-radius: 10px;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
}

.appointment-summary {
    background: rgba(255, 255, 255, 0.05); /* Very light transparent white background */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Light transparent white border */
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.appointment-summary h3 {
    margin-bottom: 15px;
    color: #ffffff; /* White for summary heading */
    font-size: 18px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Light transparent white border */
    font-size: 14px;
    color: #cccccc; /* Light gray for summary items */
}

.summary-item span {
    font-size: 14px;
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: bold;
    color: #ffffff; /* White for total */
}

.btn-group {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1); /* Light transparent white background */
    color: #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(180deg, #ffffff, #cccccc); /* White to light gray gradient */
    color: #000000; /* Black text for primary button */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4); /* White shadow on hover */
}

.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.success-content {
    background: #1a1a1a; /* Dark gray background */
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 350px;
    width: 90%;
    animation: scaleIn 0.3s ease-out;
}

.success-message {
    font-size: 14px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #73b38d, #93e41c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: white;
    animation: bounce 0.6s ease-out;
}

.success-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff; /* White for success title */
}

.success-message {
    color: #cccccc; /* Light gray for success message */
    margin-bottom: 30px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.success-actions .btn {
    font-size: 15px;
    padding: 12px 20px;
}

.error-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
}

.error-content {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 320px;
    width: 90%;
    animation: scaleIn 0.3s ease-out;
    border: 2px solid #888888; /* Gray border for error modal */
}

.error-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #888888, #666666); /* Gray gradient for error icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: white;
    animation: bounce 0.6s ease-out;
}

.error-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff; /* White for error title */
}

.error-message {
    color: #cccccc; /* Light gray for error message */
    margin-bottom: 30px;
}

.error-actions .btn {
    font-size: 15px;
    padding: 12px 20px;
    background: linear-gradient(180deg, #888888, #666666); /* Gray gradient for error button */
    color: white;
}

.error-actions .btn:hover {
    box-shadow: 0 8px 20px rgba(136, 136, 136, 0.4); /* Gray shadow on hover */
}

@keyframes shake {
    0% { transform: translateX(0); }
    10% { transform: translateX(-10px); }
    20% { transform: translateX(10px); }
    30% { transform: translateX(-10px); }
    40% { transform: translateX(10px); }
    50% { transform: translateX(-10px); }
    60% { transform: translateX(10px); }
    70% { transform: translateX(-10px); }
    80% { transform: translateX(10px); }
    90% { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}

body.shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 15px;
    }

    .calendar-grid {
        grid-template-columns: repeat(7, 1fr);
        gap: 5px;
    }

    .time-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.service-logo {
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff; /* White text for payment option */
    margin-bottom: 6px;
}

.payment-option label {
    color: #ffffff;
    font-size: 14px;
}











/* /public/css/bdc-style.css */

/* --- Estilos para o Modal PIX (Seguindo o Tema Existente) --- */

/* O fundo escuro que cobre a tela, igual aos outros modais */
.pix-modal {
    display: none; /* Começa oculto */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

/* A caixa principal do modal, com o mesmo estilo do modal de sucesso/erro */
.pix-content {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    animation: scaleIn 0.3s ease-out;
}

/* Cabeçalho do modal */
.pix-header h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.pix-header p {
    margin: 0;
    font-size: 14px;
    color: #cccccc;
}

/* Área do QR Code */
.pix-qr-code {
    background: #ffffff; /* Fundo branco para garantir a leitura do QR Code */
    border-radius: 8px;
    padding: 15px;
    margin: 0 auto;
}

.pix-qr-code img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
}

/* Área do "Copia e Cola" */
.pix-copy-paste {
    width: 100%;
}

.pix-copy-paste label {
    display: block;
    font-size: 12px;
    font-weight: bold;
    color: #cccccc;
    margin-bottom: 8px;
    text-align: left;
}

/* Grupo de input + botão */
.pix-copy-paste .input-group {
    display: flex;
    width: 100%;
}

.pix-copy-paste input {
    flex-grow: 1;
    padding: 12px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px 0 0 10px;
    color: #ffffff;
    border-right: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Botão de Copiar */
#copyPixCodeBtn {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: bold;
    cursor: pointer;
    border-radius: 0 10px 10px 0;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

#copyPixCodeBtn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Rodapé do modal */
.pix-footer {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.pix-footer #pixStatusMessage {
    margin: 0;
    font-size: 13px;
    color: #cccccc;
}

/* Botão de cancelar no modal Pix */
#cancelPixBtn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

#cancelPixBtn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}