:root {
    --primary: #4361ee;
    --secondary: #3a0ca3;
    --accent: #f72585;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #4cc9f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.section-title {
    color: var(--dark);
    font-size: 1.4rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i {
    color: var(--primary);
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Search Style 4: Glass Morphism */
.search-glass {
    position: relative;
    width: 100%;
}
.input-label {
    font-weight: 500;
    color: white;
}
.search-glass-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin: 7px 0;
}

.search-glass-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-glass-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.search-glass-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(45, 44, 44);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.search-glass-btn:hover {
    background: rgb(19, 13, 13);
}
.table-responsive-css{
     width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
/* Responsive Design */
@media (max-width: 768px) {
    .search-section {
        padding: 30px 20px;
    }

    .search-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .search-advanced {
        flex-direction: column;
    }

    .header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 10px;
    }

    .search-section {
        padding: 20px 15px;
        border-radius: 10px;
    }
}
