/* csoc-frontend.css - Frontend user styles */
.csoc-dashboard, .csoc-predictions {
    background: linear-gradient(180deg, #181c1a 0%, #191919 100%);
    color: #e5ffe5;
    font-family: 'Segoe UI', Arial, sans-serif;
    border-radius: 20px;
    max-width: 600px;
    margin: 38px auto 32px auto;
    padding: 32px 20px;
    box-shadow: 0 4px 30px #38ff3811;
}
.csoc-logo {
    display: block;
    margin: 0 auto 22px auto;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    box-shadow: 0 0 10px #38ff38aa;
}
.csoc-dashboard h2, .csoc-predictions h2 {
    color: #38ff38;
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    margin-bottom: 28px;
    text-shadow: 0 2px 8px #38ff3866;
}
.csoc-prediction-card {
    background: #171c17;
    border: 2px solid #38ff3844;
    border-radius: 13px;
    padding: 13px 10px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 17px;
    box-shadow: 0 2px 10px #38ff3822;
}
.csoc-team-logo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #111c12;
    margin-right: 9px;
    border: 2px solid #38ff38;
    object-fit: cover;
}
.csoc-teams-names {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}
.csoc-teams-names span {
    font-weight: bold;
    font-size: 1.1rem;
    color: #fff;
}
.csoc-prediction-inputs {
    display: flex;
    align-items: center;
    gap: 6px;
}
.csoc-input-score {
    width: 35px;
    background: #111b12;
    color: #38ff38;
    border: 1.5px solid #38ff38;
    border-radius: 8px;
    padding: 5px 2px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
}
.csoc-prediction-save-btn {
    margin-left: 7px;
    background: #38ff38;
    color: #191919;
    border: none;
    border-radius: 8px;
    padding: 7px 16px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 2px 7px #38ff3833;
    cursor: pointer;
    transition: background .16s, color .16s;
}
.csoc-prediction-save-btn:hover {
    background: #fff;
    color: #38ff38;
}
.csoc-match-date {
    font-size: .98rem;
    color: #aaffaa;
    margin-left: 3px;
    margin-top: 4px;
}
@media (max-width: 600px) {
    .csoc-dashboard, .csoc-predictions { padding: 10px 4px;}
    .csoc-prediction-card { flex-direction: column; gap: 10px;}
}
