* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    min-height: 100vh;
}

/* Header Banner */
.header-banner {
    background-color: #87CEEB;
    padding: 20px;
    text-align: left;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.target-icon {
    font-size: 24px;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

/* Main Content */
.main-content {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* Results Table */
.results-table-container {
    display: flex;
    justify-content: center;
}

.results-table {
    border-collapse: collapse;
    background-color: white;
    border: 2px solid #000;
    min-width: 300px;
}

.results-table td {
    padding: 15px 30px;
    text-align: center;
    border: 1px solid #000;
    font-size: 18px;
}

.date-cell {
    font-weight: bold;
    font-size: 20px;
}

.location-cell {
    font-weight: bold;
}

.header-row {
    background-color: #80D9C7;
    font-weight: bold;
}

.numbers-row {
    font-size: 24px;
    font-weight: bold;
}

/* Panels Container */
.panels-container {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Panel Styles */
.panel {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 20px;
}

.common-panel {
    background-color: #FF6B35;
}

.dream-panel {
    background-color: #FF6B35;
}

.deal-panel {
    background-color: white;
    border: 3px solid #FF6B35;
}

.panel-icon {
    margin-bottom: 20px;
}

.circle-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: transparent;
    border: 8px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: bold;
    color: #000;
}

.dream-icon {
    font-size: 80px;
}

.panel-label {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

/* Deal Tags */
.deal-tags {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.deal-tag {
    width: 80px;
    height: 100px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding-top: 15px;
}

.deal-tag::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 15px;
    background-color: #333;
}

.tag-d {
    background-color: #28a745;
}

.tag-e {
    background-color: #007bff;
}

.tag-a {
    background-color: #dc3545;
}

.tag-l {
    background-color: #ffc107;
}

.deal-tag span {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.tag-label {
    color: white;
    font-size: 20px;
    font-weight: bold;
}

/* Admin Link */
.admin-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

.admin-link a {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.admin-link a:hover {
    background-color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .panels-container {
        flex-direction: column;
        align-items: center;
    }
    
    .panel {
        width: 100%;
        max-width: 100%;
    }
    
    .results-table {
        min-width: 250px;
    }
    
    .results-table td {
        padding: 10px 15px;
        font-size: 16px;
    }
}
