/* Custom styles can go here */
body {
    padding-top: 56px; /* Adjust for fixed navbar */
}

.app-logo {
    height: 40px; /* Adjust as needed */
    margin-right: 10px;
    width: auto;
    max-width: 100%; /* Ensure responsiveness */
    vertical-align: middle;
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
    .app-logo {
        height: 30px; /* Smaller on mobile */
    }
}

.contact-icon {
    height: 24px; /* Adjust as needed */
    width: auto;
    vertical-align: middle;
    margin-right: 5px;
}

/* Responsive table for info tab */
.table-responsive {
    overflow-x: auto;
}

@media (max-width: 768px) {
    .table-responsive table {
        width: 100%;
        min-width: 500px; /* Ensure table content is readable */
    }
}
/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-button:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.whatsapp-button:active {
    transform: scale(0.95);
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 15px;
        right: 15px;
    }
}
