:root {
    --turquoise: #3DD2BB;
    --text: #1F2937;
    --background: linear-gradient(135deg, #40C9B5, #3E95CC);
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', -apple-system, system-ui, sans-serif;
    background: var(--background);
    min-height: 100vh;
    line-height: 1.5;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    min-height: 100vh;
    padding-top: 10vh;
}

.main-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 1.75rem;
    margin: 0 0 1.5rem 0;
    color: var(--text);
}

.price-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.line {
    line-height: 1.5;
}

.percentage {
    font-size: 4rem;
    font-weight: 700;
    color: var(--turquoise);
    line-height: 1;
    margin: 0.5rem 0;
}

.toggle-button {
    background: var(--turquoise);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.toggle-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    background: #34c0ab;
}

.table-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th {
    background: rgba(61, 210, 187, 0.1);
    color: var(--text);
    font-weight: 600;
    padding: 1.25rem 1rem;
    text-align: left;
}

td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

tr:hover td {
    background: rgba(61, 210, 187, 0.05);
}

footer {
    padding: 2rem;
    text-align: center;
    margin-top: auto;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.875rem;
}

footer a:hover {
    color: white;
}

@media (max-width: 640px) {
    .container {
        padding: 1rem;
    }
    
    .table-container {
        overflow-x: auto;
    }
    
    th, td {
        padding: 1rem 0.75rem;
        font-size: 0.875rem;
    }
}

.table-footer {
    margin-top: 10px;
    text-align: center;
    font-size: 0.9em;
    color: #666;
    width: 100%;
    display: block;
}