/* Custom Styles for FRPUnlocker */

body {
    font-family: 'Inter', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fa;
}

/* Typography & Colors */
.text-primary {
    color: #4361ee !important;
}

.bg-primary {
    background-color: #4361ee !important;
}

.text-gradient {
    background: linear-gradient(90deg, #4361ee, #4cc9f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header & Nav */
.navbar {
    background: linear-gradient(135deg, #10121b, #1a1e2f) !important;
    border-bottom: 2px solid #4361ee;
}

.navbar .nav-link {
    font-weight: 500;
    transition: color 0.2s ease;
}

.navbar .nav-link:hover {
    color: #4cc9f0 !important;
}

/* Cards & Elements */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid #f1f5f9;
    border-radius: 12px 12px 0 0 !important;
}

.hover-white:hover {
    color: #fff !important;
}

/* Search Input */
form.d-flex input:focus {
    box-shadow: none;
    border-color: #4361ee;
}
