/* Your custom CSS styles here */
body {
    background-color: #343a40;
    color: #fff;
}
/* Additional CSS styles */
#calendar {
    margin-top: 20px;
    background-color: #495057;
    border-radius: 5px;
}
.navbar-brand {
    font-family: 'Arial Black', sans-serif;
    font-size: 24px;
}
.navbar-toggler-icon {
    background-color: #fff;
}
.nav-link {
    color: #fff !important;
}
.nav-link.active {
    font-weight: bold;
    color: #007bff !important;
}
.tab-pane {
    padding: 20px;
    background-color: #495057;
    border-radius: 5px;
}
.tab-content {
    background-color: transparent;
}
.btn-language {
    background-color: #007bff;
    color: #fff;
    border: none;
    font-weight: bold;
}
.btn-language:hover {
    background-color: #0056b3;
}
h3 {
    color: #fff;
}
p {
    color: #dee2e6;
}
.contact-info {
    font-size: 16px;
    color: #dee2e6;
}
.jumbotron {
    background: url('images/cello1.jpg') center center/cover;
    color: #fff;
    padding: 100px 0;
    margin-bottom: 0;
}
.jumbotron h1 {
    font-family: 'Arial Black', sans-serif;
    font-size: 48px;
}
.jumbotron p {
    font-size: 20px;
}
/* New style for black labels */
.modal-body label {
    color: #000 !important;
}
.about-me-title {
    margin-top: 20px;
    margin-left: 100px;
}
/* Define CSS styles for weekends */
.fc-day.weekend {
    background-color: #50a3fb8b; 
    
}

 /* Define CSS styles for public holidays */
.fc-day.public-holiday {
    background-color: #50a3fb8b; 
}

#blog h3 {
    margin-top: 0px !important; /* Adjust title spacing */
}

.navbar-fixed-top {
    margin-bottom: 0 !important;
}

#contact {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Ensure the Schedule tab content is clickable */
#schedule {
  position: relative;
  z-index: 10;
}

/* In case something is overlaying the form */
#loginContainer, #loginContainer * {
  pointer-events: auto;
}

/* Hard guarantee: only the active tab pane is visible/clickable */
.tab-content > .tab-pane { 
  display: none;
}
.tab-content > .tab-pane.active {
  display: block;
}

