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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #2d1b1b 0%, #4d2323 100%);
    min-height: 100vh;
    color: #e0e0e0;
    line-height: 1.6;
}

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

header {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

header h1 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.search-box, .form-box, .admin-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.search-box h2, .form-box h2, .admin-box h2 {
    color: #ef4444;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.input-group {
    display: flex;
    gap: 10px;
}

input[type="text"],
input[type="url"],
input[type="password"],
textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #e0e0e0;
    font-size: 1em;
    transition: all 0.3s;
}

input[type="text"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus {
    outline: none;
    border-color: #ef4444;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

textarea {
    resize: vertical;
    font-family: inherit;
}

button, .btn-approve, .btn-delete {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

button:hover, .btn-approve:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.btn-delete {
    background: linear-gradient(135deg, #7f1d1d, #450a0a);
}

.btn-delete:hover {
    box-shadow: 0 6px 20px rgba(127, 29, 29, 0.4);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ef4444;
    font-weight: 600;
}

.results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    border-color: rgba(239, 68, 68, 0.3);
}

.result-card h3 {
    color: #ef4444;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.result-card .url {
    margin-bottom: 10px;
}

.result-card a {
    color: #fca5a5;
    text-decoration: none;
    word-break: break-all;
}

.result-card a:hover {
    color: #ef4444;
    text-decoration: underline;
}

.result-card small {
    color: #9ca3af;
    font-size: 0.85em;
}

.success, .error, .info {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.info {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #93c5fd;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
}

table th {
    background: rgba(220, 38, 38, 0.2);
    color: #ef4444;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

table td {
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.badge-approved, .badge-pending {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
}

.badge-approved {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.badge-pending {
    background: rgba(251, 191, 36, 0.2);
    color: #fcd34d;
}

footer {
    text-align: center;
    padding: 30px;
    color: #9ca3af;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .results {
        grid-template-columns: 1fr;
    }
    
    header h1 {
        font-size: 1.8em;
    }
    
    nav {
        flex-direction: column;
    }
    
    .input-group {
        flex-direction: column;
    }
}
