body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #00ACE4;
    color: white;
    padding: 10px;
    text-align: center;
}

    .header .fa-paw {
        margin: 0 10px;
        font-size: 1.1rem;
        vertical-align: middle;
        color: white;
    }

.paw-left {
    transform: rotate(-20deg);
}

.paw-right {
    transform: rotate(20deg);
}

.container {
    max-width: 720px;
    margin: 30px auto;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.logo-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: #ffffff;
}

    .logo-bar img {
        max-height: 110px;
    }

.content-wrapper {
    padding: 30px;
}

.tile-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.tile {
    background: linear-gradient(to bottom, #6eb6ff, #2d75c4);
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.2s ease;
}

    .tile:hover {
        transform: scale(1.05);
        text-decoration: none;
        color: white;
    }

    .tile i {
        font-size: 36px;
        margin-bottom: 10px;
    }

.highlight-row {
    background-color: #fff7c0 !important;
    transition: background-color 0.5s ease-in-out;
}

    .highlight-row td {
        background-color: #fff7c0 !important;
        font-weight: bold;
    }

.highlight-icon {
    color: #28a745;
    font-size: 1rem;
    margin-right: 6px;
}

.message-icon {
    color: #007bff;
    cursor: help;
    font-size: 1.2rem;
    transition: color 0.2s ease-in-out;
}

    .message-icon:hover {
        color: #0056b3;
    }

.freeze-header thead th {
    position: sticky;
    top: 0;
    background-color: #e0f3ff;
    color: #1a1a1a;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 10px;
}

.text-danger {
    font-size: 0.9em;
    margin-top: 2px;
    color: #dc3545;
}
