:root {
    --purple: #9e5fa7;
    --secondary: #E88E33;
    --accent: #6A994E;
    --neutral: #64748B;
    --info: #2563EB;
    --success: #16A34A;
    --warning: #D97706;
    --danger: #DC2626;
    --orange: #F59E0B;
    --bg-probid: #ff6b4a;
    --bg: #F8FAFC;
    --text: #0f172a;
    --nav-bg: rgba(255, 255, 255);
    --nav-border: rgba(226, 232, 240, 0.6);
}

html,
body {
    height: 100%;
    margin: 0;
}

a{
    text-decoration: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.app-layout {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.app-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--nav-border);
}


.img-fluid {
    max-height: 55px;
    object-fit: contain;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 1050;
    background: var(--nav-bg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--nav-border);
}

.app-content {
    flex: 1;
    padding-top: 70px;
}

/* 
.content {
    padding: 1.25rem 0;
}

.app-footer,
footer {
    border-top: 1px solid var(--nav-border);
    padding: 1rem 0;
    text-align: center;
} */


/* Background Colors */
.bg-warning {
    background-color: var(--warning);
    color: #000000;
}

.bg-neutral {
    background-color: var(--neutral);
    color: #fff;
}

.bg-purple {
    background-color: var(--purple);
    color: #fff;
}

.bg-probid {
    background-color: var(--bg-probid);
    color: #fff;
}


/* Button Colors */
.btn-neutral {
    background-color: var(--neutral);
    color: #fff;
}

.btn-neutral:hover {
    background-color: #556987;
    color: #fff;
}

.btn-purple {
    background-color: var(--purple);
    color: #fff;
}

.btn-purple:hover {
    background-color: #756277;
    color: #fff;
}

.btn-info {
    background-color: var(--info);
    color: #fff;
}

.btn-info:hover {
    background-color: #1E40AF;
    color: #fff;
}

.btn-success {
    background-color: var(--success);
    color: #fff;
}

.btn-success:hover {
    background-color: #15803D;
    color: #fff;
}


/* Text Colors */
.text-neutral {
    color: var(--neutral);
}


/* Input Focus */
input:focus,
textarea:focus,
.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: #b7cdf7 !important;
    background-color: #ffffff !important;
}

/* Placehomder color */
input::placeholder,
textarea::placeholder {
    color: #cdcdcd !important;
}

#search:focus,
.form-select:focus,
.ts-wrapper:focus,
.form-control:focus {
    border-color: #b7cdf7 !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 6px 1px rgba(0, 123, 255, 0.25) !important;
}

/* Material Symbols Outlined */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 5px !important;
    padding: 4px !important;
    border: 2px solid #e5e7eb !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.dropdown-menu .dropdown-item .material-symbols-outlined {
    font-size: 20px !important;
}

.dropdown-menu .dropdown-item {
    border-radius: 5px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 2px 5px !important;
    transition: all 0.2s ease-in-out !important;
}
