/* SpareWorld Custom Styles */
:root {
    --primary-color: #0d6efd;
    --dark-color: #212529;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.fw-600 { font-weight: 600; }

.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.navbar-brand {
    letter-spacing: -0.5px;
}

.btn {
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
}

.form-control {
    border-radius: 8px;
    padding: 0.75rem;
}
