/* Monterey Staff Custom Styles */

/* Body */
body {
    background-color: #f8f9fa;
}

/* Navbar */
.navbar-brand {
    font-weight: 600;
}

/* Cards */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border: none;
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    font-weight: 500;
}

/* Tables */
.table th {
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
}

.table td {
    vertical-align: middle;
}

/* Buttons */
.btn {
    font-weight: 500;
}

/* Forms */
.form-label {
    font-weight: 500;
    font-size: 0.875rem;
}

/* Badges */
.badge {
    font-weight: 500;
}

/* Pipeline stages */
.pipeline-stage {
    transition: transform 0.2s;
}

.pipeline-stage:hover {
    transform: translateY(-2px);
}

/* List groups */
.list-group-item-action:hover {
    background-color: #f8f9fa;
}

/* Stats cards */
.stats-card h3 {
    font-size: 2rem;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1rem;
    }

    .card-body {
        padding: 1rem;
    }

    .btn-group {
        flex-wrap: wrap;
    }

    .btn-group .btn {
        margin-bottom: 0.25rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .btn,
    form {
        display: none !important;
    }

    .card {
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
}
