/* /css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(120deg, #89f7fe, #66a6ff);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 800px;
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

/* Form Styling */
.form-group {
    margin-bottom: 15px;
}

input[type=text], input[type=date], input[type=password] {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 2px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

input:focus {
    border-color: #673DE6;
    outline: none;
}

button {
    width: 100%;
    padding: 12px;
    background: #673DE6;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.2s;
}

button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

th {
    background: #2c3e50;
    color: white;
}

/* Category Colors */
tr.good {
    background-color: #d4edda;
    color: #155724;
}

tr.melefic {
    background-color: #f8d7da;
    color: #721c24;
}

tr.netural {
    background-color: #d1ecf1;
    color: #0c5460;
}

.final-result {
    text-align: center;
    background: #ffeaa7;
    font-weight: bold;
}

/* Print Styling */
@media print {
    .no-print {
        display: none !important;
    }
    body {
        background: white;
    }
    .container {
        box-shadow: none;
        width: 100%;
    }
}