/* Orbsen Hosting - site styles */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Dashed border utility */
.border-dashed {
    border: 2px dashed #dee2e6 !important;
}

/* Site card hover */
.site-card {
    transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.site-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1) !important;
}

/* Template selector cards */
.template-card {
    cursor: pointer;
    transition: border-color 0.12s, background-color 0.12s;
}
.template-option input:checked + .template-card {
    border-color: var(--bs-primary) !important;
    background-color: var(--bs-primary-bg-subtle);
}
.template-card:hover {
    border-color: var(--bs-primary);
}

/* Kanban columns */
.kanban-col {
    min-height: 200px;
}

/* Nav tabs on site detail - no bottom border on active */
.nav-tabs .nav-link {
    border-radius: 6px 6px 0 0;
    color: #6c757d;
    border: 1px solid transparent;
    border-bottom: none;
    padding: 0.5rem 1rem;
}
.nav-tabs .nav-link.active {
    color: #0d6efd;
    background: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
    font-weight: 600;
}
.nav-tabs .nav-link:hover:not(.active) {
    color: #495057;
    background: #f8f9fa;
}

/* Make the tab content area feel part of the white bg */
.bg-white.border-bottom {
    position: relative;
    z-index: 1;
}

/* Monospace for evidence/commit hashes */
.font-monospace {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 0.875em;
}
