/* EA Ranking Plugin Styles */

.ea-rating-field {
    margin: 15px 0;
}

.ea-rating-field label {
    font-weight: bold;
    margin-bottom: 5px;
    display: inline-block;
}

.ea-rating-field select {
    padding: 5px;
    font-size: 14px;
    width: 200px;
}

.ea-comment-rating {
    background: #f8f9fa;
    border-left: 4px solid #007cba;
    padding: 8px 12px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #d68910;
}

.ea-ranking-table {
    margin: 20px 0;
    overflow-x: auto;
}

.ea-ranking-list {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ea-ranking-list th,
.ea-ranking-list td {
    padding: 12px 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.ea-ranking-list th {
    background: #f8f9fa;
    font-weight: bold;
    color: #333;
}

.ea-ranking-list tr:hover {
    background: #f8f9fa;
}

.ea-ranking-list .rank {
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    width: 60px;
}

.ea-ranking-list .title {
    min-width: 200px;
}

.ea-ranking-list .title a {
    color: #007cba;
    text-decoration: none;
}

.ea-ranking-list .title a:hover {
    text-decoration: underline;
}

.ea-ranking-list .score,
.ea-ranking-list .comments {
    text-align: center;
    font-weight: bold;
}

.ea-ranking-list .rating {
    color: #d68910;
    text-align: center;
}

.ea-point-exchange-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin: 20px 0;
    max-width: 400px;
}

.ea-point-exchange-form h3 {
    margin-top: 0;
    color: #333;
}

.ea-point-exchange-form div {
    margin-bottom: 15px;
}

.ea-point-exchange-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.ea-point-exchange-form input,
.ea-point-exchange-form select {
    width: 100%;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box;
}

.ea-submit-btn {
    background: #007cba;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 3px;
    cursor: pointer;
}

.ea-submit-btn:hover {
    background: #005a87;
}

#ea-exchange-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 3px;
    display: none;
}

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

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

@media (max-width: 768px) {
    .ea-ranking-list th,
    .ea-ranking-list td {
        padding: 8px 4px;
        font-size: 12px;
    }
    
    .ea-rating-field select {
        width: 100%;
    }
    
    .ea-point-exchange-form {
        margin: 10px 0;
        padding: 15px;
    }
}