
body {
    background: linear-gradient(145deg, #121212, #1e1e1e);
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.highlight {
    color: #ff4081;
}

.search-bar {
    background-color: #2c2c2c;
    border: 1px solid #444;
    color: #e0e0e0;
    border-radius: 9999px;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.search-bar::placeholder {
    color: #aaa;
}
.search-bar:focus {
    outline: none;
    border-color: #ff4081;
    box-shadow: 0 0 8px rgba(255, 64, 129, 0.4);
}

.search-button {
    background-color: #1a1a1a;
    border: 1px solid #444;
    color: #e0e0e0;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.search-button:hover {
    background-color: #ff4081;
    color: #fff;
    box-shadow: 0 0 8px rgba(255, 64, 129, 0.4);
}

.footer-link {
    color: #1e88e5;
    transition: color 0.3s ease;
}
.footer-link:hover {
    color: #ff4081;
    text-decoration: underline;
}

.nav-link {
    color: #e0e0e0;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #ff4081;
}

table {
    background-color: #2c2c2c;
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem auto;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
th, td {
    background-color: #3c3c3c;
    color: #e0e0e0;
    border: 1px solid #444;
    padding: 0.75rem;
    transition: all 0.3s ease;
}
th {
    font-weight: bold;
    color: #ff4081;
}
td a {
    color: #1e88e5;
    transition: color 0.3s ease;
}
td a:hover {
    color: #ff4081;
}

img {
    border: 2px solid #ff4081;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

button {
    background-color: #1a1a1a;
    border: 1px solid #444;
    color: #e0e0e0;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
button:hover {
    background-color: #ff4081;
    color: #fff;
    box-shadow: 0 0 8px rgba(255, 64, 129, 0.4);
}