/* GoToBIM Business Info - Frontend Styles */

.gotobim-info {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 20px;
    max-width: 600px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
}

.gotobim-section {
    margin-bottom: 15px;
    display: block;
}

.gotobim-label {
    display: inline-block;
    min-width: 120px;
    color: #333333;
    font-weight: 600;
    margin-right: 10px;
}

.gotobim-value {
    color: #555555;
    word-break: break-word;
}

.gotobim-value a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.gotobim-value a:hover {
    color: #005a87;
    text-decoration: underline;
}

/* Business Hours Styling */
.gotobim-hours-section {
    margin-top: 25px;
    padding-top: 15px;
}

.gotobim-hours-display {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    border: 1px solid #ddd;
}

.gotobim-hours-display tbody tr {
    border-bottom: 1px solid #eee;
}

.gotobim-hours-display tbody tr:last-child {
    border-bottom: none;
}

.gotobim-day-row {
    display: table-row;
}

.gotobim-day-row.closed {
    background-color: #fafafa;
}

.gotobim-day-name {
    padding: 10px 12px;
    font-weight: 600;
    color: #333;
    min-width: 80px;
    background-color: #f5f5f5;
}

.gotobim-hours-time {
    padding: 10px 12px;
    color: #555;
}

.gotobim-closed {
    color: #d63638;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
    .gotobim-info {
        padding: 15px;
    }

    .gotobim-label {
        display: block;
        min-width: auto;
        margin-bottom: 5px;
    }

    .gotobim-value {
        display: block;
    }

    .gotobim-hours-display {
        font-size: 14px;
    }

    .gotobim-day-name,
    .gotobim-hours-time {
        padding: 8px;
    }
}
