/* Main stylesheet */
body {
    font-family: 'Geom', sans-serif;
    background-color: #f3f4f6; /* light gray background */
}

/* Gradient background mixed with #db127a and #0291df */
.bg-gradient-primary {
    background: linear-gradient(135deg, #db127a 0%, #0291df 100%);
}

.text-gradient-primary {
    background: linear-gradient(135deg, #db127a 0%, #0291df 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #db127a 0%, #0291df 100%);
    color: white;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Custom Toast Container */
#toast-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80%;
    align-items: center;
}

.toast {
    background-color: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 1);
    padding: 12px 24px;
    border-radius: 9999px; /* Pill shape */
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(20px);
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: white;
    padding: 24px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

/* Custom Dropdown styling tweaks if needed */
.custom-dropdown {
    position: relative;
    user-select: none;
}

.custom-dropdown-selected {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    z-index: 10;
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

.custom-dropdown-options.show {
    display: block;
}

.custom-dropdown-option {
    padding: 8px 12px;
    cursor: pointer;
}

.custom-dropdown-option:hover {
    background-color: #f3f4f6;
}
