body {
    background-color: #f8f9fa;
    color: #282828;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-weight: 300;
}

.btn-solid {
    background-color: #f0712c;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(240, 113, 44, 0.4);
    cursor: pointer;
}

.btn-solid:hover {
    background-color: #cc5f24;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px -5px rgba(240, 113, 44, 0.5);
}

.btn-solid:disabled {
    background-color: #555;
    color: #888;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f8f9fa;
}

::-webkit-scrollbar-thumb {
    background: #f0712c;
    border-radius: 4px;
}

.input-premium {
    width: 100%;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #282828;
    padding: 0.875rem 1rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-premium:focus {
    outline: none;
    border-color: #f0712c;
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.modal-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.modal-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #e5e7eb;
    border-radius: 10px;
}