/*
Theme Name: Newspaper Child
Theme URI:  https://example.com/newspaper-child
Description: Child theme for the Newspaper parent theme — safe place for custom styles and template overrides.
Author:      Your Name
Author URI:  https://example.com
Template:    Newspaper
Version:     1.0.0
Text Domain: newspaper-child
*/

/* ===============  Custom child theme styles start here  =============== */
@import url("../newspaper/style.css"); /* fallback only — real enqueue will be done in functions.php */

.align-right .wpb_wrapper {
    text-align: right;
}
/* welcome popup */

#welcome-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.welcome-popup-content {
  background: #fff;
  padding: 30px;
  max-width: 400px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.welcome-popup-content h2 {
  margin-bottom: 10px;
}

#close-welcome-popup {
  margin-top: 15px;
  padding: 8px 16px;
  background: #2271b1;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
#close-welcome-popup:hover {
  background: #1a5a8a;
}

/*  */

