body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f9;
    color: #333;
}

h1 {
    text-align: center;
    color: #2c3e50;
}

.container {
	width:57%;
    /*max-width: 800px;*/
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

textarea {
    width: 100%;
    height: 150px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

select, button {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #3498db;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    margin-right: 10px;
}

select {
    height: auto;
}

button {
    background-color: #2ecc71;
}

.output {
    background-color: #ecf0f1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: monospace;
    font-size: 14px;
    margin-top: 20px;
    height: 150px;
    overflow-y: auto;
}

.reuse-button {
    margin-top: 10px;
    display: block;
    width: 100%;
    text-align: center;
}

.dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.dialog-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 700px;
    max-width: 100%;
}

.list-container {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.list {
    flex: 1;
    margin: 0 10px;
}

.list h3 {
    text-align: center;
}

select {
    width: 100%;
    /*height: 200px;*/
    padding: 5px;
}

.buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.buttons button {
    margin: 5px 0;
    padding: 5px 10px;
}

.dialog-actions {
    text-align: right;
}

.dialog-actions button {
    margin-left: 10px;
}

.share-buttons {
    margin-top: 20px;
    text-align: center;
}

.share-buttons h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #2c3e50;
}

.share-button {
    display: inline-block;
    margin: 5px;
    padding: 10px 15px;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
}

.share-button i {
    margin-right: 8px;
}

.share-button.facebook {
    background-color: #3b5998;
}

.share-button.twitter {
    background-color: #1da1f2;
}

.share-button.linkedin {
    background-color: #0077b5;
}

.share-button.whatsapp {
    background-color: #25d366;
}

.share-button:hover {
    opacity: 0.8;
}

.transformation-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
}

.transformation-list h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #2c3e50;
}

.transformation-grid {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    justify-items: center;
}

.transformation-item {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 90%;
}

.transformation-item h3 {
    margin-top: 0;
    font-size: 18px;
    color: #2c3e50;
}

.transformation-item p {
    margin: 5px 0;
    font-size: 14px;
    color: #555;
}

.transformation-item p strong {
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .transformation-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
}

.gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #004085;
    color: #ffffff;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.gdpr-banner a {
    color: #ffc107;
    text-decoration: underline;
}

.gdpr-banner button {
    background-color: #ffc107;
    color: #004085;
    border: none;
    padding: 8px 16px;
    margin-left: 15px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
}

.gdpr-banner button:hover {
    background-color: #e0a800;
}

.gdpr-banner p {
    margin: 0;
    display: inline;
}

@media (max-width: 768px) {
    .gdpr-banner p {
        display: block;
        margin-bottom: 10px;
    }
    .gdpr-banner button {
        margin-left: 0;
    }
}

.logo-container {
    position: fixed;
    top: 24px;
    left: 24px;
    width: 64px;
    height: 64px;
    z-index: 1000; /* Ensure the logo is on top of other content */
}

.logo {
    width: 100%;
    height: 100%;
}



