        body {
            color: #dee2e6;  
            /* color: #dee2e6;            
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center; */
        }

        .search-container {
            max-width: 800px;
            width: 100%;
            padding: 1rem;
            background-color: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
            opacity: 0.95;
            border: solid 4px #dadada;

        }

        .search-title {
            margin-bottom: 1.5rem;
            color: #212529;
            font-weight: 600;
        }

        .search-input {
            border-radius: 50px;
            padding-left: 20px;
            padding-right: 20px;
            height: 54px;
            font-size: 1.1rem;
            border: 2px solid #dee2e6;
            box-shadow: 0 3px 10px rgb(0 0 0 / 5%);
            transition: all 0.3s ease;
            width: 100%;
            margin-bottom: 1.5rem;
        }

        .search-input:focus {
            border: 0;
            outline: none;
            box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
        }

        .search-btn {
            border-radius: 50px;
            height: 54px;
            font-weight: 600;
            min-width: 120px;
        }

        .main-wrapper {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
        }

        .radio-group {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            justify-content: center;
        }
        
        .radio-option {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .radio-option input[type="radio"] {
            width: 18px;
            height: 18px;
        }
        
        .radio-option label {
            font-size: 16px;
            cursor: pointer;
        }
        
        .search-button {
            width: 100%;
            padding: 14px;
            background-color: #0066ff;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.2s;
        }
        
        .search-button:hover {
            background-color: #0052cc;
        }