body {
    background-color: #B63400;
    color: white;
    font-family: 'Segoe UI', sans-serif;
}

.top-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
    }
.top-bar h3{
    margin:0;
}
.bg-custom{
    background-color: #e36031;
}
.box {
    background-color: #e36031;
    border-radius: 12px;
    text-align: center;
    padding: 30px 0;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.box:hover {
    background-color: #f48158;
    transform: scale(1.03);
    cursor: pointer;
}
.box i {
    font-size: 36px;
    margin-bottom: 10px;
    color: #ffffff;
}
.notification {
    position: relative;
    font-size: 24px;
    color: white;
}
.badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: red;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}



/* flock.html exclusive */
.add-flock-btn {
    margin: 30px;
    color: #e36031;
}
.flock-table-container{
    display: flex;
    justify-content: center;
    align-items: center;
}
.flock-table{
    border-radius: 10px;
    overflow: hidden;
    width: 75%;
    
}
.flock-table td, .flock-table th {
    padding: 12px;
    vertical-align: middle;
}
.flock-table thead {
    background-color: #e36031 !important;
    color: white;
}

.flock-table tbody tr:nth-child(even) {
    background-color: #fbe3da !important;
}

.flock-table tbody tr:nth-child(odd) {
    background-color: #fff8f5 !important;
}

.flock-table tbody tr:hover {
    background-color: #fcd7c8 !important;
    cursor: pointer;
}  

.btn-orange {
    background-color: #e36031;
    border-color: #e65c00;
    color: white;
    border-radius: 5%;
    padding:10px;
    text-decoration: none;
  }
  
  .btn-orange:hover {
    background-color: #f48158;
    border-color: #cc5200;
    color: white;
  }

/*create_flock.html*/
.form-container {
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color:black;
}

.form-container label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: black;
}
input[disabled] {
    background-color: #f9f9f9;
    color: #333;
    opacity: 1; /* ensures it's not faded */
    cursor: not-allowed;
}

.form-container input,
.form-container select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-container button {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    background-color: #b83900;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}
.form-container button:hover {
   
    background-color: #e36031;
   
}

/* register animals*/
.headline {
    margin: 30px;
    color: white;
}

/*create vaccination.html*/
.select2-container--default .select2-results__option {
    color: #000;
}
.select2-container--default .select2-selection__choice {
    background-color: #e36031 !important;
    color: white;
    border: 1px solid #e36031 !important;
}

/*create vet_visits.html*/

 /* Remove any oversized custom switch styling */
 .big-checkbox {
    transform: scale(0.5);
}

/* Styling for the orange conditional section */
#episodeSection {
  display: none;
  background-color: #e36031;
  padding: 1rem;
  border-radius: 5px;
  margin-top: 1rem;
  color: white;
}

#episodeSection label {
  color: white;
  font-weight: 600;
}

#episodeSection .text-muted {
  color: #f1d9ce !important;
}

