﻿/* css/styles.css */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header and Footer Banners */
.header-banner, .footer-banner {
    max-height: 200px;
    overflow: hidden;
    position: relative;
}

.header-banner img, .footer-banner img {
    width: 100%;
    object-fit: cover;
    max-height: 200px;
}

//* styles.css or inline in template */
.team-header {
    padding: 2rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.team-header img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.team-header img.default-logo {
    opacity: 0.5;
}

.team-header h2 {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.team-header .mascot-name {
    margin-bottom: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Table Styling */
.table {
    font-size: 0.95rem;
}

.table th {
    background-color: #343a40;
    color: white;
    border: none;
}

.table-hover tbody tr:hover {
    background-color: #f5f5f5;
    cursor: pointer;
}

/* Search Input Styling */
#searchInput {
    max-width: 500px;
    margin: 0 auto;
    display: block;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Comments Section Styling */
.comments-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
}

.comment-form textarea {
    resize: vertical;
    min-height: 100px;
}

.comments-list {
    margin-top: 20px;
}

.comment {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .table {
        font-size: 0.85rem;
    }
    
    .header-banner, .footer-banner {
        max-height: 150px;
    }
}