/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Vlad
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* Styling for the Domain for Sale Box - Full Width & Flat Design */
.domain-for-sale-box {
    background-color: #ffeb3b; /* Solid yellow background */
    color: #000000; /* Black text */
    padding: 20px; /* Internal spacing */
    border-radius: 12px; /* Rounded corners */
    text-align: center; /* Center the text */
    font-size: 1.6em; /* Large, readable font */
    font-weight: bold; /* Bold text */
    border: 2px solid #000000; /* Solid black border for a defined look */
    margin: 20px 0; /* Vertical margin only, takes full container width */
    width: 100%; /* Ensures it fills the parent container */
    box-sizing: border-box; /* Includes padding and border in the width calculation */
    box-shadow: none; /* Shadow removed as requested */
}

/* Optional: styling for the domain name inside the box */
.domain-for-sale-box .highlighted-domain {
    text-decoration: none; 
    text-transform: lowercase; /* Keeps domain names clean */
}