:root {
    --blue: #1e40af;
    --white: #ffffff;
    --primary: #4361ee;
    --success: #4cc9a4;
    --warning: #f9c74f;
    --danger: #f94144;
    --secondary: #6c757d;
    --light: #f8f9fa;
    --dark: #212529;
    --card-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --rounded: 12px;
}

html {
  font-size: 14px;
}

.bg-blue {
    background-color: var(--blue);
}

.bg-purple-blue {
    color: var(--white);
    background: linear-gradient(30deg, #C146FC, #41B4FB);
    /*transition: all ease-in-out 1000ms;*/
}

.text-blue {
    color: var(--blue);
}

.rounded-12 {
    border-radius: 12px;
}

.border-dashed {
    border-style: dashed;
}

.btn-purple-blue {
    color: var(--white);
    background: linear-gradient(30deg, #C146FC, #41B4FB);
    /*transition: all ease-in-out 1000ms;*/
}

.btn-purple-blue:hover, .btn-purple-blue:active, .btn-purple-blue.active, .btn-purple-blue:focus {
    color: var(--white);
}

.box {
    background: var(--white);
    border-radius: var(--rounded);
    padding: 1rem;
    box-shadow: var(--card-shadow);
    border-left: 4px solid var(--primary);
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

.with-bottom-nav main{
    padding-bottom: 90px; /* sesuai tinggi nav */
}