
/* Basic colors I like */
body {
    background-color: #f8f9ff;
    color: #333;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Main container */
.container {
    width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Text colors */
.blue-text {
    color: #4285f4;
}

.gray-text {
    color: #666;
}

.white-text {
    color: white;
}

/* Background colors */
.white-bg {
    background-color: white;
}

.blue-bg {
    background-color: #4285f4;
}

.light-gray-bg {
    background-color: #f5f5f5;
}

.dark-bg {
    background-color: #333;
}

/* Buttons */
/* .button {
    background-color: #4285f4;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
} */

.button:hover {
    background-color: #3367d6;
}

.button-secondary {
    background-color: #f5f5f5;
    color: #333;
    padding: 10px 20px;
    border: 1px solid #ddd;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.button-secondary:hover {
    background-color: #e0e0e0;
}

/* Cards */
.card {
    background-color: white;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 10px 0;
}

.card-shadow {
    background-color: white;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Headers */
h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

/* Paragraphs */
p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Text alignment */
.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

/* Spacing */
.margin-top-10 {
    margin-top: 10px;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-bottom-10 {
    margin-bottom: 10px;
}

.margin-bottom-20 {
    margin-bottom: 20px;
}

.padding-10 {
    padding: 10px;
}

.padding-20 {
    padding: 20px;
}

/* Display */
.hide {
    display: none;
}

.show {
    display: block;
}

/* Forms */
input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
    margin-bottom: 10px;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
    border-color: #4285f4;
    outline: none;
}

/* Lists */
ul {
    margin: 0;
    padding-left: 20px;
}

li {
    margin-bottom: 5px;
}

/* Links */
a {
    color: #4285f4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f5f5f5;
    font-weight: bold;
}

/* Simple animations */
.fade-in {
    opacity: 0;
    transition: opacity 0.5s;
}

.fade-in.show {
    opacity: 1;
}

.hover-grow:hover {
    transform: scale(1.05);
    transition: transform 0.3s;
}

/* Mobile - I heard this is important */
@media screen and (max-width: 768px) {
    .container {
        width: 100%;
        padding: 10px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
}