/* 
  Global Modern Theme for Roller Sports
  Colors: White, Blue, Red
*/

:root {
    /* Brand Colors */
    --primary-blue: #0056b3;
    --primary-red: #dc3545;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    
    /* Text Colors */
    --text-dark: #212529;
    --text-muted: #6c757d;
    --text-white: #ffffff;
    
    /* Layout & Spacing */
    --header-height: 70px;
    --sidebar-width: 250px;
}

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

body {
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-red {
    background-color: var(--primary-red);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}
