body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif
}

button, input, select, textarea {
    font-family: inherit;
}

[id].is-active { display: block; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    font-size: 1rem;
    font-family: inherit;
    font-weight: 400;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: all 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    white-space: nowrap;
}

.btn-outline-primary { border: 1.5px solid #F2C94C; color: #F2C94C;}
.btn-yellow { background:#F2C94C;color:#1f2d2a; }
.btn-primary { color: #fff; background-color: #024735; }
.btn-secondary { color: #fff; background-color: #6c757d; }
.btn-success { color: #fff; background-color: #198754; }
.btn-danger { color: #fff; background-color: #dc3545; }
.btn-warning { color: #000; background-color: #ffc107; }
.btn-info { color: #000; background-color: #0dcaf0; }
.btn-light { color: #000; background-color: #f8f9fa; }
.btn-dark { color: #fff; background-color: #212529; }
.btn-outline-primary { background-color: #024735; border: 1px solid #e1b93b; }
.btn-outline-secondary { background-color: #fff; border: 1px solid #dcdcdc; }

.btn-outline-primary:hover { background: #FFFCF1;color: #024735;border:#FFFCF1; }
.btn-yellow:hover { background-color:#e1b93b; }
.btn-primary:hover { background-color: #1f2d2a; }
.btn-secondary:hover { background-color: #5c636a; }
.btn-success:hover { background-color: #157347; }
.btn-danger:hover { background-color: #bb2d3b; }
.btn-warning:hover { background-color: #ffca2c; }
.btn-info:hover { background-color: #31d2f2; }
.btn-light:hover { background-color: #e9ecef; }
.btn-dark:hover { background-color: #424649; }
.btn-white:hover { background-color: #f0f0f0;}
.btn-outline-secondary:hover { background-color: #dcdcdc; }
.btn-disabled { background-color: #e9ecef; color: #6c757d; cursor: not-allowed; pointer-events: none; }

.badge {
    padding: 5px;
    border-radius: 5px;
    transition: transform 0.2s;
    text-transform: uppercase;
    font-size: 12px;
    display: block;
}

.badge-green       { background-color: #2ECC71 !important; color: white; }
.badge-red         { background-color: #E74C3C !important; color: white; }
.badge-yellow      { background-color: #e1b93b !important; color: white; }
.badge-default     { background-color: #6c757d !important; color: white; }
.badge-birthday    { background-color: #3498db !important; color: white; }
.badge-christmas   { background-color: #c0392b !important; color: white; }
.badge-wedding     { background-color: #d4af37 !important; color: white; }
.badge-birth       { background-color: #9b59b6 !important; color: white; }
.badge-party       { background-color: #e67e22 !important; color: white; }
.badge-valentine   { background-color: #e91e63 !important; color: white; }
.badge-other       { background-color: #024735 !important; color: white; }
.badge-password    { background-color: #2a2929 !important; color: white; }
.badge-date-future { background-color: #f3f4f6; color: #374151; border: 1px solid #d1d5db; }
.badge-date-past   { background-color: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

.alert {
    padding: 12px 18px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.alert-success {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.alert-warning {
    background-color: #FFF3CD;
    color: #856404;
    border: 1px solid #FFEEBA;
}

.alert-error {
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

.form-group {
    margin-bottom:20px;
}
.form-group > label {
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 600;
}
.form-group .required {
    color: red;
}
.form-group small {
    color: #666;
}
.input-group {
    display: flex;
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.input-group input {
    border: none !important;
}
.input-group button {
    border-radius: 0;
}
input[type="text"], input[type="password"], input[type="email"], input[type="tel"], input[type="number"], input[type="url"], textarea, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #dcdcdc;
    border-radius: 5px; 
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    min-width: fit-content;
    box-sizing: border-box;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="number"]:focus, input[type="url"], textarea:focus, select:focus, .input-group:focus-within {
    border-color: #024735;
    outline: none;
    box-shadow: 0 0 0 3px rgba(2, 71, 53, 0.25);
    border-radius: 5px;
}