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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    text-align: center;
    color: white;
    margin-bottom: 10px;
    font-size: 2rem;
}

.subtitle {
    text-align: center;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
}

.emoji {
    font-size: 2rem;
}

.card-header h3 {
    font-size: 1.2rem;
    color: #333;
}

.rating-summary {
    margin: 15px 0;
    display: flex;
    gap: 10px;
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.good { background: #4CAF50; color: white; }
.medium { background: #FFC107; color: #333; }
.weak { background: #f44336; color: white; }

.score {
    margin: 15px 0;
    font-size: 1rem;
    color: #555;
}

.btn {
    display: inline-block;
    background: #667eea;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 15px;
    transition: background 0.3s;
}

.btn:hover {
    background: #5a67d8;
}

.compare-section {
    text-align: center;
    margin-top: 30px;
}

.btn-compare {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-compare:hover {
    background: #ee5a5a;
}

/* የሪፖርት ገፅ ቅርጽ */
.report-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background: #667eea;
    color: white;
}

tr:hover {
    background: #f5f5f5;
}

.rating-cell {
    font-weight: bold;
    text-align: center;
}

.back-btn {
    display: inline-block;
    background: #555;
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.strong-side {
    background: #e8f5e9;
    border-left: 5px solid #4CAF50;
    padding: 15px;
    margin-top: 30px;
}

.weak-side {
    background: #ffebee;
    border-left: 5px solid #f44336;
    padding: 15px;
    margin-top: 20px;
}

h3 {
    margin-bottom: 15px;
    color: #333;
}

ul {
    margin-left: 20px;
}

li {
    margin: 8px 0;
}