/* Base Setup */
body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a; /* Slate 900 */
    color: #e2e8f0; /* Slate 200 */
    overflow-x: hidden;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(30, 41, 59, 0.7);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.glass-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Uiverse Button Style */
.uiverse-btn {
    padding: 0.8em 1.8em;
    border: 2px solid #17C3B2;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    transition: .3s;
    z-index: 1;
    font-family: inherit;
    color: #17C3B2;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.uiverse-btn::before {
    content: '';
    width: 0;
    height: 300%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    background: #17C3B2;
    transition: .5s ease;
    display: block;
    z-index: -1;
}

.uiverse-btn:hover::before {
    width: 105%;
}

.uiverse-btn:hover {
    color: #111;
}

/* Input Fields */
.ui-input {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
}

.ui-input:focus {
    border-color: #17C3B2;
    box-shadow: 0 0 0 2px rgba(23, 195, 178, 0.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0f172a; 
}
::-webkit-scrollbar-thumb {
    background: #334155; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #475569; 
}

/* Table Styles */
.ui-table th {
    text-align: left;
    padding: 12px 16px;
    color: #94a3b8;
    font-weight: 500;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}
.ui-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.05);
}
.ui-table tr:last-child td {
    border-bottom: none;
}
