/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

* {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f8fafc;
    color: #2d3748;
}

/* Menú Lateral */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 240px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.sidebar .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    background-color: #3a5477;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar li:hover {
    background-color: #e2e8f0;
}

.sidebar li.active {
    background-color: #3a5477;
    color: white;
}

/* Contenido Principal */
.main-content {
    margin-left: 240px;
    padding: 20px;
}

/* Formularios */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.btn-primary {
    background-color: #3a5477;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2b3d57;
}

/* Tabs */
.nav-tabs {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-tabs li {
    margin-right: 10px;
    cursor: pointer;
}

.nav-tabs li.active {
    font-weight: bold;
}

.tab-content {
    margin-top: 20px;
}

/* DataTables */
.dataTables_wrapper {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.dataTables_filter {
    text-align: right;
}

.dataTables_length,
.dataTables_filter,
.dataTables_info,
.dataTables_paginate {
    padding: 10px;
}

.dataTables_length select {
    padding: 5px;
    font-size: 14px;
}

.dataTables_filter input {
    padding: 5px;
    font-size: 14px;
}

/* Mapa */
#mapaRadioterapia {
    height: 400px;
    width: 100%;
}