.cover-image {
    position: relative;
    width: 100%;
    height: 30vh;
    background-image: url('../images/uforians-cover-header.png');
    background-size: cover;
    background-position: center;
}

.header {
    background-image: url('../images/uforians-vod-logo.jpg');
    align-content: center;
    background-size: cover;
    background-position: center;
    height: 225px;
}

h1 {
    color: #333;
}

body {
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.image-grid img {
    width: 100%;
    height: auto;
    cursor: pointer;
    user-select: none;
    transition: transform 0.2s;
    position: relative;
}

.image-grid img:hover {
    transform: scale(1.1);
}

.right-grid {
    min-width: 200px;
    border: 2px dashed #007bff;
    padding: 10px;
    max-width: 90%;
}

.right-grid img {
    width: 100px;
    height: auto;
    cursor: pointer;
    position: relative;
}

.submit-btn {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.error-container {
    color: #fff;
    background-color: #ff0000;
    padding: 10px;
    margin-bottom: 10px;
    display: none;
}

.tabs {
    overflow: hidden;
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #ccc;
    width: 100%;
}

.tab {
    cursor: pointer;
    padding: 14px 20px;
    transition: 0.3s;
}

.tab:hover {
    background-color: #ddd;
}

.tab.active {
    background-color: #ccc;
}

.tab-content {
    display: none;
    width: 100%;
}

.tab-content.active {
    display: block;
}

table {
    width: 100%;
}

td {
    vertical-align: top;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #000;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

