/**
 * AMP Backend - Custom CSS
 * Add your custom styles here
 */

/* Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Navigation */
.navbar-brand {
    font-weight: 600;
    font-size: 1.25rem;
}

/* Cards */
.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Buttons */
.btn {
    border-radius: 6px;
}

/* Tables */
.table {
    background-color: white;
}

/* Forms */
.form-control, .form-select {
    border-radius: 6px;
}

/* Footer */
footer a {
    text-decoration: none;
    transition: color 0.2s;
}

footer a:hover {
    color: white !important;
}

/* Utility Classes */
.text-white-50 {
    opacity: 0.75;
}
