/* Basic Reset & Typography */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
footer {
    background-color: #001f3f; /* Navy Blue */
    padding: 1rem 0;
    color: white;
    width: 100%; 
}

main.container {
    flex-grow: 1; /* This makes the main content take up available space */
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #f4f7f6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

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

/* Navbar */
.navbar {
    background-color: #001f3f; /* Navy Blue */
    padding: 1rem 0;
    color: white;
    width: 100%; 
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
}
.navbar .brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Main Content */
main.container {
    width: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
    flex-grow: 1;
}

/* Forms */
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
}
.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}
.btn {
    display: inline-block;
    background-color: #0074D9; /* A lighter blue */
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
}
.btn-large {
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

/* Hero Section on Homepage */
.hero {
    text-align: center;
    padding: 60px 0;
}
.hero h1 {
    font-size: 2.5rem;
    color: #001f3f; /* Navy Blue */
}

/* Error and Success Messages */
.errors {
    background-color: #FFDFDF;
    color: #D8000C;
    padding: 1rem;
    border: 1px solid #D8000C;
    margin-bottom: 1rem;
    border-radius: 4px;
}
.success {
    background-color: #DFF2BF;
    color: #4F8A10;
    padding: 1rem;
    border: 1px solid #4F8A10;
    margin-bottom: 1rem;
    border-radius: 4px;
}
/* Add these styles to the bottom of your file */
hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 40px 0;
}

.files-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.files-table th, .files-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}
.files-table th {
    background-color: #f2f2f2;
}
.files-table td a {
    margin-right: 5px;
}
.btn-danger {
    background-color: #D8000C;
}
/* Add to bottom of /public_html/css/style.css */
.pricing-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}
.pricing-box {
    border: 1px solid #ddd;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    flex: 1;
    max-width: 300px;
}
.pricing-box .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #001f3f; /* Navy Blue */
    margin: 10px 0;
}
.pricing-box .billing-cycle {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}