
.p-v-g-main-div{
position: ;left: 0;right: 0;background: linear-gradient(to right, #a8edea, #fed6e3);
text-align: center;
padding: 20px;

}

body {
            font-family: Arial, sans-serif;
            
            text-align: center;
            
        }
        #generator {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
            max-width: 600px;
            margin: auto;
        }
        #output {
            margin: 20px 0;
            font-size: 20px;
            color: #333;
            padding: 15px;
            border-radius: 8px;
            background: #f0f0f0;
            min-height: 60px;
        }
        select, button {
            padding: 10px;
            font-size: 16px;
            border-radius: 8px;
            border: none;
            margin: 5px;
            cursor: pointer;
        }
        select {
            background: #fff;
            color: #333;
        }
        select:focus {
            outline: none;
            border: 2px solid #ff758c; 
            box-shadow: 0 0 6px #ff758c;
        }
        button {
            background: #ff758c;
            color: white;
            transition: background 0.3s ease;
        }
        button:hover {
            background: #ff4e68;
        }
        #guide {
            text-align: left;
            margin-top: 20px;
            background: #fff8f8;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #ffcccc;
        }
        #guide h3 {
            color: #ff4e68;
        }