/* PC10258 Admin - Global Styles */

:root {
    --primary-color: #1a73e8;
    --primary-hover: #174ea6;
    --primary-bg: #e8f0fe;
    --bg-main: #f8f9fa;
    --text-main: #3c4043;
    --border-gray: #dadce0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
}

* {
    box-shadow: none !important;
}

/* Sidebar */
.sidebar-link.active {
    background-color: var(--primary-bg);
    color: var(--primary-color);
}

.sidebar-item:hover {
    background-color: #f1f3f4;
}

/* Cards & Containers */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(232, 234, 237, 0.8);
}

.google-shadow {
    box-shadow: none !important;
}

/* Tables */
.table-row:hover {
    background-color: var(--bg-main);
}

.status-badge {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Toggle Switch Styling */
.switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #dadce0;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary-color);
}

input:checked+.slider:before {
    transform: translateX(20px);
}