html, body {
    background-image: url('http://www.majesticsz.ihosts3.pt/adp3.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #f1f1f1;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 8px;
    table-layout: fixed;
}

.map-cell {
    width: 33.33%;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    vertical-align: top;
    background-color: rgba(20, 20, 20, 0.75);
    border-radius: 8px;
    border: 1px solid #00aaff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.map-cell:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 170, 255, 0.3);
}

.text-only-cell {
    text-align: center;
    padding: 3px 0; /* Espaçamento entre as linhas de texto */
}

.text-wrapper {
    display: inline-block;
    background-color: rgba(20, 20, 20, 0.75);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    color: #ffffff;
    border: 1px solid #00aaff;
}

.map-cell img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 8px;
}

.map-cell div {
    font-size: 1.1em;
    font-weight: bold;
    color: #ffffff;
    word-wrap: break-word;
    margin-bottom: 5px;
}

.map-cell .time {
    display: block;
    font-size: 0.9em;
    color: #cccccc;
}

.map-cell .date {
    display: block;
    font-size: 0.8em;
    color: #999999;
}

.title-cell {
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    color: #00aaff;
    padding-top: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(0, 170, 255, 0.5);
    text-shadow: 0 0 8px rgba(0, 170, 255, 0.5);
}

