body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 20px;
    background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
    color: #333;
}

h2 {
    color: #2c3e50;
    margin-top: 30px;
    font-size: 24px;
    font-weight: 600;
}

form {
    background: rgba(255, 255, 255, 0.7);
    padding: 24px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6px);
    transition: box-shadow 0.3s ease;
}

form:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

dl {
    display: flex;
    flex-wrap: wrap;
}

dt, dd {
    width: 100%;
    margin-bottom: 14px;
}

label {
    font-weight: 600;
    display: inline-block;
    margin-bottom: 6px;
    color: #34495e;
}

input[type="text"], select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    background-color: #fefefe;
    transition: border 0.3s ease;
    box-sizing: border-box;
}

input[type="text"]:focus,
select:focus {
    border-color: #5dade2;
    outline: none;
}

input[type="get"], input[type="submit"]{
    box-sizing: border-box;
    margin-top: 14px;
    padding: 10px 20px;
    border: none;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    color: black;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 242, 254, 0.4);
    transition: background 0.3s ease;
}

input[type="submit"]:hover {
    background: linear-gradient(to right, #4facfe, #00f2fe);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

th, td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

th {
    background-color: rgba(245, 245, 245, 0.9);
    font-weight: 600;
    color: #2c3e50;
}

a {
    margin-right: 12px;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.paigutus {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 30px;
}

.vasak {
    flex: 1;
    min-width: 300px;
}

.parem {
    flex: 2;
}

button[name="filter"] {
    padding: 10px 28px;
    margin-right: 30px;
    background: linear-gradient(to right, #00f2fe, #4facfe);
    color: black;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: normal;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: 0.2s;
}

button[name="filter"]:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

