/* Report styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #37352f;
    background-color: #ffffff;
}

.btn {
    cursor: pointer;
}

.report {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.report h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #000000;
}

.report h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000000;
}

.report p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #6b7280;
}

.report ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.report .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #000000;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.report .btn:hover {
    background-color: #2c2c2c;
}

/* Notion-card styling for report sections */
.report-section {
    background-color: #f7f6f3;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.report-section:hover {
    transform: translateY(-5px);
}

.report-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Minimum height for main element */
main {
    min-height: calc(100vh - 200px); /* Adjust 200px based on your header and footer height */
}

/* Sticky footer styles */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

.visually-hidden {
    display: none;
}

#website-cards .col {
    margin-bottom: 20px;
}

#google-login:focus {
    box-shadow: none !important;
}

.show-more:focus {
    outline: none !important;
    box-shadow: none !important;
}    

/* Styles for tasks in tasks.php */
.task-list {
    margin-top: 2rem;
}

.task-item {
    background-color: #f7f6f3;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.task-item:hover {
    transform: translateY(-5px);
}

.task-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 0.5rem;
}

.task-description {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.task-status {
    font-size: 0.9rem;
    font-weight: bold;
}

.task-status.pending {
    color: #ffc107;
}

.task-status.in-progress {
    color: #17a2b8;
}

.task-status.completed {
    color: #28a745;
}

.task-actions {
    margin-top: 1rem;
}

.task-actions .btn {
    margin-right: 0.5rem;
}

.float-right {
    float: right;
}

.notion-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.notion-header {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.notion-subheader {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #6b7280;
}

.notion-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #000000;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.notion-button:hover {
    background-color: #2c2c2c;
}

.notion-section {
    margin-top: 4rem;
}

.notion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.notion-card {
    background-color: #f7f6f3;
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.notion-card:hover {
    transform: translateY(-5px);
}

.notion-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.notion-section-alt {
    background-color: #f7f6f3;
    padding: 4rem 2rem;
    border-radius: 8px;
}

.notion-section-centered {
    text-align: center;
}

.notion-section-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notion-section-split > div {
    flex: 1;
}

.notion-section-image {
    background-color: #1e1e1e;
    color: white;
    padding: 4rem 2rem;
    border-radius: 8px;
}

.notion-section-image .notion-card {
    background-color: #2c2c2c;
    color: white;
}

.notion-section-image .notion-card:hover {
    background-color: #3a3a3a;
}

#letter-from-mike {
    background-color: #fff;
    margin-top: 4rem;
    text-align: left;
    font-size: 1.1em;
    line-height: 1.6;
    padding: 2rem;
    border: 1px solid #d1d1d1;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

#letter-from-mike .normal-card {
    background-color: transparent !important;
    border-radius: 8px;
    padding: 1.5rem;
    line-height: 1.6em;
    background-size: 100% 1.6em;
    background-position: 0 0;
    padding-top: 0.2em;
}

#letter-from-mike::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    height: 100%;
    width: 1px;
    background-color: #ff9999;
}

.notion-card-image{
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .notion-header {
        padding: 1rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .notion-header h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .notion-header p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .notion-header .notion-button {
        width: 100%;
        margin-top: 1rem;
    }

    .notion-grid {
        grid-template-columns: 1fr;
    }

    .notion-card {
        margin-bottom: 1rem;
    }

    #letter-from-mike {
        padding: 1rem;
        font-size: 1em;
    }

    #letter-from-mike::before {
        left: 20px;
    }
}

.notion-hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .notion-hero-container {
        flex-direction: column;
        padding: 1rem;
    }
}


.notion-hero-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
}

.notion-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.notion-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.notion-hero-image {
    width: 50%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .notion-hero-content,
    .notion-hero-image {
        width: 100%;
    }

    .notion-hero-content {
        padding: 1rem;
        text-align: center;
        align-items: center;
    }

    .notion-hero-content h1 {
        font-size: 2rem;
    }

    .notion-hero-content p {
        font-size: 1rem;
    }

    .notion-hero-image {
        margin-top: 1rem;
    }
}

/* Notion-style table */
.notion-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.notion-table table {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.notion-table th,
.notion-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.notion-table th {
    background-color: #f7f6f3;
    font-weight: 600;
    color: #37352f;
}

.notion-table tr:last-child td {
    border-bottom: none;
}

.notion-table tr:nth-child(even) {
    background-color: #fafafa;
}

.notion-table tr:hover {
    background-color: #f0f0f0;
}

@media (max-width: 768px) {
    .notion-table {
        overflow-x: auto;
        display: block;
    }
    
    .notion-table table {
        min-width: 100%;
    }
    
    .notion-table th,
    .notion-table td {
        white-space: nowrap;
    }
}


.notion-h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #37352f;
    line-height: 1.3;
}


@media (max-width: 768px) {
    .notion-h2 {
        font-size: 1.75rem;
    }
}
