   body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f9;
            width: 100%;
            height: 100%;
        }
        h1 {
            color: #be0c6c;
            text-align: center;
            margin-top: 20px;
        }
        .container {
            width: 95%;
            max-width: 1200px;
            margin: 10px auto;
            padding: 15px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Only shadow, no border */
        textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
    margin-top: 10px;
    border: 2px solid #be0c6c; /* Outline color */
    box-sizing: border-box;
    height: 250px; /* Increased height */
}
        .email-result {
            background-color: #f9f9f9;
            max-height: 300px;
            overflow-y: auto;
        }
        .email-count {
            font-weight: bold;
            margin-top: 10px;
            text-align: center;
        }

        /* Buttons Grid */
        .action-buttons {
            margin-top: 15px;
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 3 buttons per row */
            gap: 10px;
            justify-content: center;
        }
        .action-buttons button {
            background-color: #be0c6c;
            color: white;
            padding: 10px 20px;
            font-size: 14px;
            border: 2px solid #be0c6c; /* Button outline matches the main color */
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        .action-buttons button:hover {
            background-color: #9c0a58;
        }

        /* Responsive Fix for Smaller Screens */
        @media (max-width: 768px) {
            .action-buttons {
                grid-template-columns: 1fr; /* Stack buttons vertically */
            }
        }