/* Custom Styles for Golden Dawn Activities Annotation Platform */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

.card {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.card-header {
    background-color: #f1f1f1;
    font-weight: 600;
}

/* Annotation area styles */
.article-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}

.article-title {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.article-text {
    font-size: 1rem;
    line-height: 1.6;
    white-space: pre-line;
}

/* Event extraction form */
.event-form {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

/* Map container for geolocation */
#map {
    height: 500px;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Dashboard stats */
.stats-card {
    text-align: center;
    transition: transform 0.2s;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
}

.stats-label {
    font-size: 1rem;
    color: #666;
}

/* Difficulty rating stars */
.rating-container {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating-container input {
    display: none;
}

.rating-container label {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    padding: 0 0.1rem;
}

.rating-container input:checked ~ label {
    color: #ffcc00;
}

.rating-container label:hover,
.rating-container label:hover ~ label {
    color: #ffcc00;
}

.rating-container input:checked + label:hover,
.rating-container input:checked ~ label:hover,
.rating-container label:hover ~ input:checked ~ label,
.rating-container input:checked ~ label:hover ~ label {
    color: #ffcc00;
} 