/* Styles for veterinary office availability plugin */

.vet-emergency-status-container {
    text-align: left;
}

.vet-emergency-button {
    display: inline-block;
    background-color: #737E86;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 0px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s;
}

.vet-emergency-button:hover {
    background-color: #677077;
}

.vet-traffic-light-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.vet-department-light {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 177px;
    padding: 10px;
    border-radius: 10px;
    background-color: #333;
    position: relative;
}

.vet-light {
    width: 43px;
    height: 50px;
    border-radius: 50%;
    margin: 5px 0;
    background-color: #555;
    transition: background-color 0.3s;
}

.vet-light.active {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.vet-light.red.active {
    background-color: #ff0000;
}

.vet-light.yellow.active {
    background-color: #ffff00;
}

.vet-light.green.active {
    background-color: #00ff00;
}

.vet-opening-hours-container {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.vet-opening-hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.vet-opening-hours-table th,
.vet-opening-hours-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.vet-opening-hours-table th {
    background-color: #737E86;
    color: white;
    font-weight: bold;
}

.vet-day-row:nth-child(even) {
    background-color: #f2f2f2;
}

.vet-closed {
    color: #ff4444;
    font-weight: bold;
}

.vet-time-block {
    display: inline-block;
    margin-right: 10px;
    padding: 3px 8px;
    background-color: transparent;
    color: #737E86;
    border-radius: 3px;
    font-size: 14px;
}

.vet-day-name {
    font-weight: bold;
}

.vet-box {
    display:flex;
    border:2px solid #737E86;
    background: #fff;
    padding:20px;
}

.vet-traffic-light-group > div {
  flex: 1;
}

.vet-department-light {
    margin-right:20px;
}

.vet-box h3, .vet-box h2 {
    font-size:20px;
    line-height:20px;
    margin-bottom:10px;
}

.vet-box h2, .vet-box p {
    color:#737E86;
   
}

.vet-box h2 {
	display: flex;
    align-items: center;
    gap: 8px; 
	 font-weight:700;
	 font-size: 24px;
}

.vet-box h3 {
    color:#737E86;
    font-weight:400
}

.icon_vet {
	width:40px;
}

/* Responsive design */
@media (max-width: 768px) {
    .vet-traffic-light-group {
        flex-direction: column;
        gap: 20px;
    }
    
    .vet-opening-hours-table {
        font-size: 14px;
    }
    
    .vet-opening-hours-table th,
    .vet-opening-hours-table td {
        padding: 8px;
    }
}