/*
Theme Name: Grillenspiegel Headless
Theme URI: https://grillenspiegel.at
Description: Minimal headless WordPress theme for Grillenspiegel media bookmarks. This theme is designed to work with a Next.js frontend and provides REST API functionality without traditional WordPress theming.
Author: Grillenspiegel
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: grillenspiegel-headless
*/

/* This theme is intentionally minimal as it serves as a headless CMS */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    margin: 0;
    padding: 20px;
    background: #f5f5f5;
}

.headless-message {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.headless-message h1 {
    color: #333;
    margin-bottom: 10px;
}

.headless-message p {
    color: #666;
    line-height: 1.6;
}

.headless-message a {
    color: #0073aa;
    text-decoration: none;
}

.headless-message a:hover {
    text-decoration: underline;
}

.logout-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background: #dc3232;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.2s;
}

.logout-button:hover {
    background: #a00;
    text-decoration: none;
}
