// ============================================
// FILE 1: style.css (REQUIRED)
// ============================================
/*
Theme Name: SmartLink Basics Theme
Theme URI: https://smartlinkbasics.com/
Author: SmartLink Basics
Author URI: https://smartlinkbasics.com/
Description: A WordPress theme for custom applications
Version: 1.0.0
License: GPL v2 or later
Text Domain: blank-theme
*/

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

img {
    max-width: 100%;
    height: auto;
}