/* Importação da fonte Roboto */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    background: #ECF0F1;
    color: #2C3E50;
    margin: 0;
    line-height: 1.6;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #2C3E50, #34495E);
    color: #FFFFFF;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.logo img {
    max-height: 60px;
}

.menu a {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 20px;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: #1E90FF;
}

.logout img {
    max-height: 28px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logout img:hover {
    opacity: 0.8;
}

.container {
    padding: 20px;
    max-width: 1200px;
    margin: 20px auto;
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

#map {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    border: 1px solid #DDE4E6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 22px;
    cursor: pointer;
    color: #2C3E50;
    transition: color 0.3s ease;
}

.popup-close:hover {
    color: #1E90FF;
}

.btn {
    background: linear-gradient(135deg, #1E90FF, #3498DB);
    color: #FFFFFF;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    background: linear-gradient(135deg, #3498DB, #1E90FF);
    transform: translateY(-2px);
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #DDE4E6;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    border-color: #1E90FF;
    box-shadow: 0 0 8px rgba(30, 144, 255, 0.2);
    outline: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #DDE4E6;
}

th {
    background: #F8F9FA;
    font-weight: 600;
    color: #2C3E50;
}

tr:nth-child(even) {
    background: #F9FAFB;
}

tr:hover {
    background: #ECF0F1;
}

.calendar {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.calendar .header {
    background: #1E90FF;
    color: #FFFFFF;
    padding: 15px;
    border-radius: 8px;
}

.calendar .day {
    border: 6px;
    padding: 12px;
    background: #FFFFFF;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.calendar .day:hover {
    background: #ECF0F1;
}

.event-bar {
    width: 4px;
    border-radius: 4px;
}

/* Media Queries para Responsividade */
@media (max-width: 600px) {
    .container {
        width: 90%;
        margin: 10px auto;
        padding: 15px;
    }

    .header {
        flex-direction: column;
        padding: 10px;
    }

    .menu a {
        margin: 5px 10px;
        font-size: 14px;
    }

    .popup-content {
        width: 85%;
        padding: 15px;
    }

    #map {
        height: 350px;
    }

    .calendar .days {
        grid-template-columns: repeat(7, 1fr);
        gap: 4px;
    }

    .calendar .day {
        padding: 8px;
        font-size: 12px;
    }

    table {
        font-size: 10px;
    }

    th, td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px;
        font-size: 14px;
    }

    input, select, textarea {
        font-size: 14px;
    }

    .login-container {
        width: 95%;
        padding: 15px;
    }
}/* Estilos específicos para login */
.login-container {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-container h1 {
    font-size: 1.5rem;
    color: #2C3E50;
    margin-bottom: 20px;
}

.login-container .logo-img {
    max-width: 120px;
    margin-bottom: 15px;
}

.message {
    color: #E74C3C;
    font-size: 0.9rem;
    margin-top: 10px;
}

.footer {
    font-size: 0.8rem;
    color: #7F8C8D;
    margin-top: 20px;
}

/* Responsividade para login */
@media (max-width: 600px) {
    .login-container {
        width: 90%;
        padding: 15px;
    }

    .login-container h1 {
        font-size: 1.3rem;
    }

    .login-container .logo-img {
        max-width: 100px;
    }
}

@media (max-width: 400px) {
    .login-container {
        padding: 10px;
    }

    .login-container h1 {
        font-size: 1.1rem;
    }
}/* Estilos para agenda.php */
.page-title {
    font-size: 1.8rem;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 20px;
}

.calendar {
    margin-bottom: 20px;
    text-align: center;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.calendar .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1E90FF, #3498DB);
    color: #FFFFFF;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.calendar .header button {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.calendar .header button:hover {
    color: #FFD700;
}

.calendar .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar .day {
    padding: 10px;
    border: 1px solid #DDE4E6;
    border-radius: 6px;
    position: relative;
    cursor: pointer;
    background: #FFFFFF;
    transition: background 0.3s ease;
}

.calendar .day.header {
    font-weight: 600;
    background: #F8F9FA;
    color: #2C3E50;
    cursor: default;
}

.calendar .day.today {
    background: #1E90FF;
    color: #FFFFFF;
}

.calendar .event-bar {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    width: 4px;
    border-radius: 2px;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 350px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.popup-content h3 {
    font-size: 1.2rem;
    color: #2C3E50;
    margin-bottom: 15px;
}

.agenda-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.agenda-list li {
    padding: 8px 0;
    border-bottom: 1px solid #DDE4E6;
    font-size: 0.9rem;
    color: #2C3E50;
}

.ver-mais {
    color: #1E90FF;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.85rem;
}

.detalhes-extras {
    display: none;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #7F8C8D;
}

/* Responsividade para agenda */
@media (max-width: 600px) {
    .calendar .days {
        gap: 1px;
    }

    .calendar .day {
        padding: 6px;
        font-size: 0.8rem;
    }

    .calendar .event-bar {
        width: 3px;
        left: 3px;
    }

    .popup-content {
        width: 85%;
        padding: 15px;
    }

    .popup-content h3 {
        font-size: 1rem;
    }

    .agenda-list li {
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .calendar .header {
        padding: 8px;
    }

    .calendar .header button {
        font-size: 1rem;
    }

    .calendar .day {
        padding: 4px;
        font-size: 0.75rem;
    }
}
/* Estilos para relatorio_shows.php */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    background: #F8F9FA;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filter-group {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 200px;
}

.filters label {
    font-weight: 500;
    color: #2C3E50;
    margin-right: 10px;
    align-self: center;
}

.filters select, .filters input[type="date"] {
    flex: 1;
    min-width: 120px;
    padding: 8px;
    border: 1px solid #DDE4E6;
    border-radius: 6px;
    font-size: 0.9rem;
    background: #FFFFFF;
    transition: border-color 0.3s ease;
}

.filters select:focus, .filters input[type="date"]:focus {
    border-color: #1E90FF;
    box-shadow: 0 0 6px rgba(30, 144, 255, 0.2);
}

.show-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.show-item {
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #DDE4E6;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.show-item:hover {
    transform: translateY(-2px);
}

.show-item strong {
    color: #2C3E50;
    font-weight: 600;
}

.no-results {
    text-align: center;
    color: #7F8C8D;
    font-size: 1rem;
    margin-top: 20px;
}

/* Responsividade para relatorio_shows */
@media (max-width: 600px) {
    .filters {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .filter-group {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        min-width: auto;
    }

    .filters label {
        margin-bottom: 5px;
        margin-right: 0;
    }

    .filters select, .filters input[type="date"] {
        width: 100%;
        min-width: auto;
    }

    .show-item {
        padding: 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .filters select, .filters input[type="date"] {
        font-size: 0.8rem;
        padding: 6px;
    }

    .show-item {
        padding: 8px;
    }
}/* Estilos para relatorio_shows.php */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    background: #F8F9FA;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filter-group {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 200px;
}

.filters label {
    font-weight: 500;
    color: #2C3E50;
    margin-right: 10px;
    align-self: center;
}

.filters select, .filters input[type="date"] {
    flex: 1;
    min-width: 120px;
    padding: 8px;
    border: 1px solid #DDE4E6;
    border-radius: 6px;
    font-size: 0.9rem;
    background: #FFFFFF;
    transition: border-color 0.3s ease;
}

.filters select:focus, .filters input[type="date"]:focus {
    border-color: #1E90FF;
    box-shadow: 0 0 6px rgba(30, 144, 255, 0.2);
}

.show-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.show-item {
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #DDE4E6;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.show-item:hover {
    transform: translateY(-2px);
}

.show-item strong {
    color: #2C3E50;
    font-weight: 600;
}

.no-results {
    text-align: center;
    color: #7F8C8D;
    font-size: 1rem;
    margin-top: 20px;
}

/* Responsividade para relatorio_shows */
@media (max-width: 600px) {
    .filters {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .filter-group {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        min-width: auto;
    }

    .filters label {
        margin-bottom: 5px;
        margin-right: 0;
    }

    .filters select, .filters input[type="date"] {
        width: 100%;
        min-width: auto;
    }

    .show-item {
        padding: 10px;
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .filters select, .filters input[type="date"] {
        font-size: 0.8rem;
        padding: 6px;
    }

    .show-item {
        padding: 8px;
    }
}/* Estilos para shows.php */
.map-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    background: #F8F9FA;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filter-group {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 200px;
}

.map-filters label {
    font-weight: 500;
    color: #2C3E50;
    margin-right: 10px;
    align-self: center;
}

.map-filters input[type="date"] {
    flex: 1;
    min-width: 120px;
    padding: 8px;
    border: 1px solid #DDE4E6;
    border-radius: 6px;
    font-size: 0.9rem;
    background: #FFFFFF;
    transition: border-color 0.3s ease;
}

.map-filters input[type="date"]:focus {
    border-color: #1E90FF;
    box-shadow: 0 0 6px rgba(30, 144, 255, 0.2);
}

#map {
    height: 500px;
    border: 1px solid #DDE4E6;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Responsividade para shows.php */
@media (max-width: 600px) {
    .map-filters {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .filter-group {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        min-width: auto;
    }

    .map-filters label {
        margin-bottom: 5px;
        margin-right: 0;
    }

    .map-filters input[type="date"] {
        width: 100%;
        min-width: auto;
    }

    #map {
        height: 350px;
    }
}

@media (max-width: 400px) {
    .map-filters input[type="date"] {
        font-size: 0.8rem;
        padding: 6px;
    }
}/* Estilos para relatorio_por_data_cidade.php */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    background: #F8F9FA;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filter-group {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 200px;
}

.filters label {
    font-weight: 500;
    color: #2C3E50;
    margin-right: 10px;
    align-self: center;
}

.filters input[type="text"],
.filters input[type="date"] {
    flex: 1;
    min-width: 120px;
    padding: 8px;
    border: 1px solid #DDE4E6;
    border-radius: 6px;
    font-size: 0.9rem;
    background: #FFFFFF;
    transition: border-color 0.3s ease;
}

.filters input[type="text"]:focus,
.filters input[type="date"]:focus {
    border-color: #1E90FF;
    box-shadow: 0 0 6px rgba(30, 144, 255, 0.2);
}

.filters .btn {
    align-self: flex-end;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.report-container {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.report-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.report-table th,
.report-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #DDE4E6;
}

.report-table th {
    background: #F8F9FA;
    font-weight: 600;
    color: #2C3E50;
}

.report-table tr:hover {
    background: #ECF0F1;
}

.no-results {
    text-align: center;
    color: #7F8C8D;
    font-size: 1rem;
    margin-top: 20px;
}

/* Responsividade para relatorio_por_data_cidade */
@media (max-width: 600px) {
    .filters {
        flex-direction: column;
        gap: 10px;
        padding: 10px;
    }

    .filter-group {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        min-width: auto;
    }

    .filters label {
        margin-bottom: 5px;
        margin-right: 0;
    }

    .filters input[type="text"],
    .filters input[type="date"],
    .filters .btn {
        width: 100%;
        min-width: auto;
    }

    .report-table {
        font-size: 0.85rem;
    }

    .report-table th,
    .report-table td {
        padding: 8px;
    }
}

@media (max-width: 400px) {
    .filters input[type="text"],
    .filters input[type="date"],
    .filters .btn {
        font-size: 0.8rem;
        padding: 6px;
    }

    .report-table th,
    .report-table td {
        padding: 6px;
        font-size: 0.75rem;
    }
}