﻿body {
    background-color: #f8fafc;
}

button:not(:disabled),
[role="button"]:not([aria-disabled="true"]) {
    cursor: pointer;
}

button:disabled,
[role="button"][aria-disabled="true"] {
    cursor: not-allowed;
}

.app-input {
    border: 0;
    outline: none;
    box-shadow: none;
    font-family: inherit;
    border-bottom: 1px solid #6b7280;
    color: #0f172a;
    transition: background-color .15s ease, box-shadow .15s ease;
}

.app-input::placeholder {
    color: #94a3b8;
    opacity: 1;
}

.app-input:focus,
.app-input:focus-visible {
    background-color: rgb(241 245 249);
    box-shadow: 0 0 0 1px #3b82f6;
    outline: none;
}

@keyframes cc-fade-in {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

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

.animate-fade-in {
    animation: cc-fade-in 0.35s ease-out both;
}

.fade-delay-1 {
    animation-delay: 60ms;
}

.fade-delay-2 {
    animation-delay: 120ms;
}

.fade-delay-3 {
    animation-delay: 180ms;
}

.fade-delay-4 {
    animation-delay: 240ms;
}

.fade-delay-5 {
    animation-delay: 300ms;
}

.filled-field {
    background-color: rgb(241 245 249);
    border-bottom: 2px solid #cbd5e1;
    border-radius: 4px 4px 0 0;
    color: rgb(15 23 42);
    line-height: 1.25rem;
    transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none !important;
    background: rgb(241 245 249) !important;
    padding-right: 12px;
}

.filled-field::placeholder {
    color: rgb(148 163 184);
}

.filled-field:focus {
    border-bottom-color: #7c3aed;
    outline: 1px solid #3b82f6;
    box-shadow: 0 0 0 1px #3b82f6;
}

.filled-field:disabled {
    background-color: rgb(248 250 252);
    color: rgb(148 163 184);
    cursor: not-allowed;
}

select.filled-field {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3 5 6 8 9 5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px 12px;
    padding-right: 2rem;
}

select.filled-field::-ms-expand {
    display: none;
}

.search-wrapper {
    outline: none;
    background-color: rgb(241 245 249);
    box-shadow: none;
    font-family: inherit;
}

.search-wrapper:focus,
.search-wrapper:focus-visible {
    outline: none;
    background-color: white;
    box-shadow: 0 0 0 2px #7C3AED;
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    pointer-events: none;
}

.search-box {
    padding-left: 2.25rem;
}

.btn-contained {
    background-color: rgb(51 65 85);
    color: #ffffff;
    border: 1px solid transparent;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
}

.btn-contained:hover {
    background-color: #1e293b;
}

.btn-contained:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px rgb(139 92 246 / 0.6);
}

.btn-contained:disabled {
    background-color: rgb(203 213 225);
    color: rgb(148 163 184);
    cursor: not-allowed;
}

.btn-outlined {
    background-color: #ffffff;
    color: rgb(51 65 85);
    border: 1px solid rgb(203 213 225);
    transition: background-color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
}

.btn-outlined:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

.btn-outlined:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px rgb(139 92 246 / 0.6);
}

.btn-outlined:disabled {
    background-color: rgb(248 250 252);
    color: rgb(148 163 184);
    border-color: rgb(226 232 240);
    cursor: not-allowed;
}


.btn-text {
    background-color: transparent;
    color: rgb(71 85 105);
    border: 1px solid transparent;
    transition: background-color 0.15s ease, color 0.15s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-text:hover {
    background-color: rgb(241 245 249);
    color: rgb(15 23 42);
}

.btn-text:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px rgb(139 92 246 / 0.6);
}

.font-sans {
    font-family: 'Inter', system-ui, sans-serif;
}

html, :host {
    font-family: 'Inter', system-ui, sans-serif;
}

.material-symbols-outlined.text-xs {
    font-size: 12px;
}

.material-symbols-outlined.text-sm {
    font-size: 14px;
}

.material-symbols-outlined.text-xl {
    font-size: 1.25rem;
}

.material-symbols-outlined.text-base {
    font-size: 1rem;
    line-height: 1rem;
}

.text-2xl{
    line-height: 2rem;
}

.material-symbols-outlined.text-2xl {
    font-size: 1.5rem;
}

.material-symbols-outlined.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}
