/* @tailwind base;
@tailwind components;
@tailwind utilities; */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

:root {
    --primary-color: #2c6ade;
}

body {
    font-family: "Quicksand", monospace;
    min-height: 100vh;
    height: 100dvh;
}

.btn-primary-color {
    color: var(--primary-color) !important;;
    padding: 5px 20px 5px 20px;
    border: 1px solid var(--primary-color)!important;;
    transition: all 0.3s ease;
    font-weight: bold;
    border-radius: 10px;
}

.btn-primary-color:hover {
    background-color: var(--primary-color)!important;;
    border-color: var(--primary-color)!important;;
    color: white!important;;
    transform: translateY(-2px);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-merah-color {
    color: #dc3545;
    padding: 5px 20px 5px 20px;
    border: 1px solid #dc3545;
    transition: all 0.3s ease;
    font-weight: bold;
    border-radius: 10px;
}

.btn-merah-color:hover {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
    transform: translateY(-2px);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-kembali {
    border: 1px solid rgba(131, 131, 131, 0.223);
    transition: all 0.3s ease;
    padding: 5px 20px 5px 20px;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.btn-kembali:hover {
    transform: translateY(-2px);
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(116, 116, 116, 0.25);
}

.swal-actions-gap {
    gap: 10px;
    display: flex;
}

.swal-question-primary:where(.swal2-icon).swal2-question {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.swal-warning-primary:where(.swal2-icon).swal2-warning {
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}

.swal-success-primary:where(.swal2-icon).swal2-success {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.swal-success-primary:where(.swal2-icon).swal2-success [class^=swal2-success-line] {
    background-color: var(--primary-color) !important;
}

.swal-success-primary:where(.swal2-icon).swal2-success .swal2-success-ring {
    border: .25em solid rgba(44, 109, 174, .3) !important;
}

.primary-color {
	background: var(--primary-color);
}

.nav-color {
	background-color:white;
}

.container {
    max-width: 1400px;
}

.cursor {
    cursor: pointer;
}

@media (max-width: 768px) {
    .container {
        max-width: 360px;
    }
}
