/* assets/css/style.css */
/* Custom CSS untuk tema modern, elegant, dan profesional */
/* Gunakan font Google Roboto untuk tampilan clean */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.navbar {
    background-color: #007bff !important; /* Biru profesional */
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 700;
}

.card {
    border: none;
    border-radius: 8px;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
}

.btn-primary:hover {
    background-color: #004085;
    border-color: #004085;
}

.footer {
    background-color: #343a40;
    color: #fff;
}

.table {
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.modal-content {
    border-radius: 8px;
}

/* Responsif adjustments */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
}

