/* =========================================
   GLOBAL RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================
   BODY
========================================= */

body {
    font-family: Arial, sans-serif;
    background: #f4f7fb;
    color: #222;
}

/* =========================================
   MAIN LAYOUT
========================================= */

.bookshelf-ai-main-container {
    margin-left: 250px;
    padding: 30px;
}

/* =========================================
   PAGE TITLES
========================================= */

.bookshelf-ai-page-title {
    font-size: 28px;
    margin-bottom: 25px;
}

/* =========================================
   COMMON CARD
========================================= */

.bookshelf-ai-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* =========================================
   INPUTS
========================================= */

.bookshelf-ai-input,
.bookshelf-ai-textarea,
.bookshelf-ai-select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* =========================================
   BUTTONS
========================================= */

.bookshelf-ai-btn {
    background: #111827;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
}

.bookshelf-ai-btn:hover {
    background: #1f2937;
}
