.nyh-rankings,
.nyh-player-profile,
.nyh-submit-portal,
.nyh-pricing,
.nyh-account {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.nyh-rankings-header {
    margin-bottom: 30px;
}

.nyh-rankings-header h2 {
    margin: 0 0 10px;
    font-size: 28px;
}

.nyh-rankings-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.nyh-rankings-table th,
.nyh-rankings-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.nyh-rankings-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.nyh-rankings-table tbody tr:hover {
    background-color: #f9f9f9;
}

.nyh-player-profile h2 {
    margin-top: 0;
}

.nyh-upload-form {
    margin-bottom: 40px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.nyh-upload-form input[type="file"] {
    margin-bottom: 10px;
}

.nyh-upload-form button {
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.nyh-upload-form button:hover {
    background-color: #005a87;
}

#nyh-upload-status {
    margin-top: 10px;
    font-weight: 600;
}

.nyh-pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.nyh-plan {
    padding: 30px;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
}

.nyh-plan-featured {
    border-color: #0073aa;
    background-color: #f0f8ff;
}

.nyh-plan h3 {
    margin-top: 0;
    font-size: 24px;
}

.nyh-plan-price {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0;
}

.nyh-plan-save {
    color: #0073aa;
    font-weight: 600;
}

.nyh-plan ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.nyh-plan li {
    padding: 8px 0;
}

.nyh-checkout-btn {
    padding: 12px 30px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.nyh-checkout-btn:hover {
    background-color: #005a87;
}

.nyh-account-section {
    margin-bottom: 40px;
}

#nyh-portal-btn {
    padding: 10px 20px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#nyh-portal-btn:hover {
    background-color: #005a87;
}

.nyh-add-player,
.nyh-add-team {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.nyh-form-group {
    margin-bottom: 20px;
}

.nyh-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.nyh-form-group input[type="text"],
.nyh-form-group input[type="number"],
.nyh-form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.nyh-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.nyh-btn-primary {
    background-color: #0073aa;
    color: white;
}

.nyh-btn-primary:hover {
    background-color: #005a87;
}

.nyh-status-message {
    padding: 10px;
    margin: 15px 0;
    border-radius: 4px;
}

.nyh-status-message.nyh-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.nyh-status-message.nyh-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

@media (max-width: 768px) {
    .nyh-rankings-table {
        font-size: 14px;
    }

    .nyh-rankings-table th,
    .nyh-rankings-table td {
        padding: 8px;
    }

    .nyh-pricing-plans {
        grid-template-columns: 1fr;
    }
}
