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

.main-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    text-align: left;
}

/* Titles */
.main-container h1, .main-container h2 {
    text-align: center;
    margin: 20px 0;
}

/* Welcome buttons */
.welcome-buttons {
    text-align: center;
    margin: 15px 0;
}

.welcome-btn {
    display: inline-block;
    padding: 10px 18px;
    margin: 5px;
    background: #0073e6;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}
.welcome-btn:hover {
    background: #005bb5;
}

/* Highlight subscription */
.highlight-box {
    background: #f0f8ff;
    border: 2px solid #0073e6;
    border-radius: 8px;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
}

/* Tables */
.find-table, .equipment-table, .image-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.find-table {
    margin: 20px auto;
    border-collapse: collapse;
    width: auto;              /* shrink to content */
    text-align: left;          /* left align */
}
.find-table td {
    padding: 4px 8px;          /* smaller spacing */
    text-align: left;
}
.equipment-table {
    margin: 20px auto;         /* center the table */
    border-collapse: collapse;
    width: auto;               /* shrink to fit */
}
.equipment-table td {
    padding: 6px 12px;         /* compact spacing */
    text-align: left;
}
.image-table {
    margin: 20px auto;         /* center the table */
    border-collapse: collapse;
    width: auto;               /* shrink to fit */
}
.image-table td {
    padding: 6px 12px;         /* compact spacing */
    text-align: center;
}

/* Slideshow */
.slideshow {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-radius: 16px;   /* Rounded edges */
    background: transparent;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-wrapper.active {
    opacity: 1;
}

/* Image fills wrapper, full image shown, clipped to rounded corners */
.slide-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 16px;   /* apply rounding to the image itself */
    display: block;
}

.slideshow-inner img.active {
    opacity: 1;
}


/* Arrows */
.slideshow .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 4px;
    user-select: none;
    z-index: 10;
}

.slideshow .arrow.left { left: 10px; }
.slideshow .arrow.right { right: 10px; }

    .image-table img.awgb-logo {
    width: 500px;
    height: 150px;
	}
	.image-table img.awgb-tutor {
		width: 200px;
		height: 200px;
	}

/* Responsive adjustments */
@media (max-width: 768px) {
    .equipment-table td {
        display: block;
        width: 100%;
    }
    .image-table td {
        display: block;
        text-align: center;
    }
    .image-table img {
        max-width: 80%;
        height: auto;
    }
}
@media (max-width: 480px) {
    .welcome-btn {
        width: 100%;
        text-align: center;
    }
    .highlight-box {
        width: 100%;
    }
    .find-table td {
        padding: 2px 4px;       /* tighter cell padding */
        line-height: 1.2;       /* reduce vertical spacing */
    }
    .find-table tr {
        margin: 0;
    }
	.find-table a {
        display: inline-block;  /* keeps link compact */
        white-space: nowrap;    /* stops link wrapping */
        font-size: 0.9rem;      /* slightly smaller on mobile */
    }
}