/* Main styling */
@import url("https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
    font-family: 'Fira Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    color: #0f172a;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fira Sans', sans-serif;
}

/* Bootstrap overrides */
.btn,
.navbar {
    font-family: 'Fira Sans', -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
}

/* Typography improvements */
h1, h2, h3, h4, h5, h6 {
    letter-spacing: -0.025em;
    font-weight: 700;
}

/* =============================================================================
   BUTTON SYSTEM
   ============================================================================= */

/* Base button styles */
.btn-base {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.15s ease;
    text-decoration: none;
    align-items: center;
    cursor: pointer;
    border: none;
}

.btn-lg {
    padding: 12px 24px;
    font-size: 16px;
}

.btn-sm {
    padding: 6px 8px;
    font-size: 12px;
    height: 32px;
    justify-content: center;
}

/* Button variants */
.btn-primary {
    background: #1e40af;
    border: 1px solid #1e40af;
    color: #fff;
    border-radius: 4px;
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    color: #fff;
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #e5e5e5;
    color: #333;
}

.btn-secondary:hover {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #1e40af;
    text-decoration: none;
}

/* =============================================================================
   TOOLTIP SYSTEM
   ============================================================================= */

.tooltip {
    --bs-tooltip-max-width: auto;
}

/* =============================================================================
   MODAL SYSTEM
   ============================================================================= */

.modal-content {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 24px 16px;
}

.modal-body {
    padding: 16px 24px;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.modal-footer {
    border-top: 1px solid #e5e5e5;
    padding: 16px 24px 20px;
}

.modal-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}