/*
Theme Name: Subscription Expired Theme
Theme URI: https://example.com/subscription-expired
Author: Brynetic
Description: A minimal WordPress theme that only displays a central "Subscription Expired" button.
Version: 1.0
License: GNU General Public License v2 or later
*/

body {
  margin: 0;
  padding: 0;
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  font-family: Arial, sans-serif;
}

button {
  background-color: #ff0000;
  color: #fff;
  padding: 1em 2em;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: default;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}