<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* Layout-Container */
.tab-account-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 120px;
    background-color: #ffffff;
}

/* Menüleiste */
.tab-account-menu {
    display: flex;
    justify-content: center;
    gap: 50px;
    position: relative;
    flex-direction: row;
}

/* Tabs */
.account-tab {
    
    text-decoration: none;
    font-weight: 500;
    color: #555;
    position: relative;
    transition: color 0.3s ease;
    z-index:2;
    height: 30px;
    display:flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 0 10px;
}

.account-tab.active_tab {
    color: #ffffff;
    font-weight: 600;
}

/* Unterstreichung */
.tab-indicator {
    position: absolute;
    bottom: 0;
    height: 30px;
   
    border-radius: 10px;
    z-index:0;
    background-color: #2c61e0;
    transition: left 0.3s ease, width 0.3s ease;
    width: 0;
    left: 0;
}

/* Inhalt nebeneinander */
.tab-account-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow: hidden;
    scroll-behavior: smooth;
    width: 100vw;
}

.tab-account-content &gt; div {
    flex: 0 0 100vw;
    width: 100vw; /* optional, aber empfohlen */
    box-sizing: border-box;
}

.content_box
{
    display: flex; 
    flex-direction:column; 
    justify-content:center; 
    margin: 30px auto 100px auto;
    padding: 40px;
    border-radius:10px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    width: 50vw;
}

@media only screen and (max-width: 1000px) 
{
    .content_box
    {
         box-shadow: none;
        margin: 0 auto 0px auto;
        width: 100vw;
    } 
}

.account_delete_message_container
{
    padding: 20px; 
    border-radius: 10px;
    background:#eeeeee; 
    width: 50vw;
    margin:20px auto 0 auto;
}

@media only screen and (max-width: 1000px) 
{
    .account_delete_message_container
    {
        margin: 20 auto 0px auto;
        width: 90vw;
    } 
}

.license-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    overflow: hidden;
}

.license-table thead {
    background: #050f25;
    color: #fff;
    text-align: left;
}

.license-table th, .license-table td {
    padding: 1rem;
    text-align: left;
    font-size: 0.95rem;
}

.license-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease, transform 0.2s ease;
}

.license-table tbody tr:hover {
    background: #eaf2ff;
    transform: scale(1.01);
    box-shadow: 0 4px 8px rgba(44, 62, 80, 0.1);
}

.license-table tbody td {
    color: #333;
}

@media (max-width: 768px) {
    .license-table th, .license-table td {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}
</pre></body></html>