:root {
    --background-color: #000000;
    --container-background: #ffffff;
    --table-header-background: #f4f4f4;
    --table-border-color: #ddd;
    --accent-color-1: #c8e599 ;
    --button-background: #5c6166;
    --button-light-background: #80858947;
    --button-hover: #0056b3;
    --text-color: #000000;
    --text-bright: #dadada;

    --dscc-card-view-1-background: #fff;
    --dscc-card-view-1-button:   #2a2a2a;
    --dscc-card-view-1-button-2:   #5c5d5eaf;
    --dscc-card-view-1-button-hover:   #5c5d5edb;
    --dscc-card-view-1-h2: black;
    --dscc-card-view-1-text: #555;
    --dscc-card-view-1-text-2: #555;

    --button-light-2: #cccccc8a;

  
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

/* Allgemeine Stile */
body {
    font-family: Helvetica, Arial,  sans-serif;
    background-color: var(--background-color);
    background-size: 100% 100%;
    text-align: center;
    overflow-x: hidden;
}

/*.container {
    max-width: 1200px;
    margin: 120px auto 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .container {
        margin: 90px auto 20px auto;
        border-radius: 0px;
    }
        
    
    } */



        /* Styling für die Buttons */
        .view-button {
            padding: 10px 20px;
            margin: 5px;
            border: none;
            background-color: #ddd;
            cursor: pointer;
        }
        .view-button.active {
            background-color: #007bff;
            color: white;
        }


    
.DSCC-container h1{
    font-family: Helvetica, Arial,  sans-serif;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-bright);
    font-size: 2.8rem;
}

.DSCC-container h2{
    font-family: Helvetica, Arial,  sans-serif;
    font-weight: 240;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-bright);
    font-size: 1.8rem;
}

.DSCC-container h3{
    font-family: Helvetica, Arial,  sans-serif;
    font-weight: 240;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-bright);
    font-size: 1.6rem;

}
.DSCC-container h4{
    font-family: Helvetica, Arial,  sans-serif;
    font-weight: 240;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-bright);
    font-size: 1.2rem;

}

.DSCC-container p{
    font-family: Helvetica, Arial,  sans-serif;
    text-align: center;
    color: var(--text-bright);
    font-size: 1rem;
}

@media (max-width: 650px) {
    .DSCC-container h1 {
font-size: 1.9rem;
    }

    .DSCC-container p{
        font-family: Helvetica, Arial,  sans-serif;
        text-align: center;
        color: var(--text-bright);
        font-size: 0.8rem;
    }
}


/* DSCC Container 2*/
.DSCC-container-2 p{
    font-family: Helvetica, Arial,  sans-serif;
    text-align: left;
    color: var(--text-bright);
    font-size: 0.8rem;
}

.DSCC-container-2 a{
    font-family: Helvetica, Arial,  sans-serif;
    text-align: left;
    color: var(--button-light-2);
    font-size: 0.9rem;
}

.DSCC-container-2 h3{
    font-family: Helvetica, Arial,  sans-serif;
    font-weight: 240;
    margin-top: 22px;
    margin-bottom: 12px;
    text-align: left;
    color: var(--text-bright);
    font-size: 1.6rem;

}
/* Suchleiste und Button */


.search-container {
 

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.search-container input[type="text"] {
    background-color: #ddd;
    color: var(--text-color);
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px ;
}

/* Such-Button (Icon-Style) */
.search-container .search-button {
    padding: 10px 15px;
    font-size: 18px;
    background-color: #5c5d5e7a;
    color: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.search-button {
    margin-left: -10px;
}

.search-container .search-button:hover {
    background-color: #0056b3;
}




/* Wrapper für die Checkbox */
.checkbox-style-1 {
    display: inline-block;
    margin-right: 10px;
}

/* Verstecke die Standard-Checkbox */
.checkbox-style-1 input[type="checkbox"] {
    display: none;
}

/* Label Styling */
.checkbox-style-1 label {
    display: inline-flex;
    align-items: center;
    color: var(--text-bright);
    cursor: pointer;
    position: relative;
    margin-left: 5px;
}

/* Checkbox-Kästchen */
.checkbox-style-1 label span {
    display: inline-block;
    position: relative;
    background-color: #5c5d5e7a;
    width: 15px;
    height: 15px;
    transform-origin: center;
    border: 1px;
    border-radius: 5px;
    vertical-align: middle;
    margin-right: 2.5px;
    transition: background-color 150ms 200ms, transform 350ms cubic-bezier(0.78, -1.22, 0.17, 1.89);
}

/* Checkbox "Haken" */
.checkbox-style-1 label span:before,
.checkbox-style-1 label span:after {
    content: "";
    position: absolute;
    background: #5c5d5ea9;
    height: 2px;
    border-radius: 2px;
    transition: width 50ms ease;
}

/* Perfekt zentriertes Haken-Design */
.checkbox-style-1 label span:before {
    width: 0;
    top: 50%;
    left: 50%;
    transform: translate(-100%, -0%) rotate(45deg);
}

.checkbox-style-1 label span:after {
    width: 0;
    top: 50%;
    left: 50%;
    transform: translate(-30%, -50%) rotate(-45deg);
}



/* Checkbox Aktiv (Checked) */
.checkbox-style-1 input[type="checkbox"]:checked + label span {
    background-color: #5c5d5e7a;
    transform: scale(1.25);
}

/* Haken erscheint in der Mitte */
.checkbox-style-1 input[type="checkbox"]:checked + label span:before {
    width: 3px;
    background: #fff;
    transition: width 150ms ease 100ms;
}

.checkbox-style-1 input[type="checkbox"]:checked + label span:after {
    width: 7px;
    background: #fff;
    transition: width 150ms ease 100ms;
}

/* Checked Hover Effekt not for mobile */
@media (min-width: 768px){
.checkbox-style-1 input[type="checkbox"]:checked + label:hover span {
    background-color: #ffffff70;
    transform: scale(1.25);
}

.checkbox-style-1 input[type="checkbox"]:checked + label:hover span:before {
    width: 5px;
    background: #fff;
    transition: width 150ms ease 100ms;
}

.checkbox-style-1 input[type="checkbox"]:checked + label:hover span:after {
    width: 10px;
    background: #fff;
    transition: width 150ms ease 100ms;
}
/* Hover Effekt */
    .checkbox-style-1 label:hover span:before {
        width: 5px;
        transition: width 100ms ease;
        background: #ffffffa7;
    }
    
    .checkbox-style-1 label:hover span:after {
        width: 10px;
        transition: width 150ms ease 100ms;
        background: #ffffffa7;
    }

}

/* Wrapper für Sortieren und Social-Media */
.sort-follow-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0; /* Abstand zur Tabelle */
    flex-wrap: wrap; /* Zeilenumbruch bei kleinen Bildschirmen */
    gap: 10px;
}

/* Sortieren-Dropdown */
.sort-container {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-bright);
}

#sortOptions {
    padding: 6px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: var(--button-light-background);
    color: var(--text-bright);
    cursor: pointer;
    width: auto; /* Breite passt sich an den Inhalt an */
    white-space: nowrap; /* Kein Zeilenumbruch */
}

/* Sortieren-Dropdown (Mobilansicht) */
@media (max-width: 768px) {
    #sortOptions {
        font-size: 14px;
        width: auto;
        white-space: nowrap; /* Verhindert Zeilenumbrüche */
        overflow: hidden; /* Versteckt überflüssigen Text */
        text-overflow: ellipsis; /* Zeigt Ellipsen an */
    }
}


.dropdown {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: var(--button-light-background);
    cursor: pointer;
    appearance: none; /* Removes default arrow in some browsers */


    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
}


/* General Dropdown Styles */


.dropdown-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-bright);
    background-color: var(--button-light-background);
}

/* Hover and Focus Styles */
.dropdown:hover {
    border-color: #007bff;
}

.dropdown:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .dropdown-container {
        align-items: center;
        width: 100%;
    }

    .dropdown {
        width: 100%;
        font-size: 14px;
    }
}

/* Reset-Button */
.reset-button {
    display: inline-block;
    padding: 6px 16px;
    font-size: 14px;
    color: var(--text-bright);
    background-color: var(--button-light-background);
    border: 1px solid #ccc;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.reset-button:hover {
    background-color: #d32f2f;
    color: #fff;
}

/* Social-Media-Logos */
.socials-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.follow-text {
    font-size: 1rem;
    color: var(--text-bright);
}

@media (max-width: 650px) {
    .follow-text {
font-size: 0.9rem;
    }
}

.socials-1-logo {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.socials-1-logo li a {
    font-size: 20px;
    color: var(--accent-color-1); /* Standardfarbe */
    transition: color 0.3s ease;
}

.socials-1-logo li a:hover {
    color: #007BFF; /* Hover-Farbe */
}

/* Haupttabelle */
.main-table {
    width: 100%;
    border-collapse: separate; /* Wichtig: verhindert, dass die Zellen die Rundung stören */
    border-spacing: 0; /* Entfernt Abstand zwischen Zellen */
    margin-top: 20px;
    border-radius: 10px; /* Rundet die Ecken */
    overflow: hidden; /* Stellt sicher, dass der Inhalt innerhalb der Rundung bleibt */
    border: 1px solid #ddd; /* Optional: Rand für die Tabelle */
}

.main-table th:first-child, 
.main-table td:first-child {
    border-top-left-radius: 10px; /* Runde obere linke Ecke */
    border-bottom-left-radius: 10px; /* Runde untere linke Ecke */
}

.main-table th:last-child, 
.main-table td:last-child {
    border-top-right-radius: 10px; /* Runde obere rechte Ecke */
    border-bottom-right-radius: 10px; /* Runde untere rechte Ecke */
}
.main-table td, .main-table th {
    padding: 10px;
    text-align: left;
    vertical-align: middle; /* Vertikale Ausrichtung */
    height: 50px; /* Einheitliche Zeilenhöhe */
}

.main-table th {
    background-color: #f4f4f4;
    
}

.main-table td {
    border: 1px solid #ddd;

    
}

/* Tabelle */
.table-container {
    overflow-x: auto; /* Ermöglicht horizontales Scrollen auf kleinen Bildschirmen */
}

.main-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    
}

/* Mobilansicht: Zeigt nur relevante Spalten an */
@media (max-width: 768px) {
    .main-table th, .main-table td {
        display: none; /* Versteckt alle Spalten standardmäßig */
    }

    .main-table th:nth-child(1), /* ID */
    .main-table td:nth-child(1),
    .main-table th:nth-child(2), /* Name */
    .main-table td:nth-child(2),
    .main-table th:nth-child(3), /* More Info */
    .main-table td:nth-child(3) {
        display: table-cell; /* Zeigt nur diese Spalten */
    }

    .sort-follow-wrapper {
        flex-direction: column; /* Elemente untereinander */
        align-items: flex-start;
        gap: 15px;
    }

    .search-container {
        flex-direction: row; /* Suchleiste und Button nebeneinander */
        justify-content: space-between;
        gap: 5px;
      
    }

    .search-container input[type="text"] {
        flex: 1;
        font-size: 14px;
        padding: 8px;
    }

    .search-container .search-button {
        font-size: 16px;
        padding: 8px;
        
    }

    .search-button{
        margin-left: -5px;
    }
}

/* Pagination Styles */
/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

.pagination .dots {
    padding: 0 6px;
    color: #999;
    font-size: 16px;
}

.pagination a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    color: #007BFF;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.pagination a:hover {
    background-color: #007BFF;
    color: #fff;
    border-color: #007BFF;
}

.pagination .active {
    background-color: #007BFF;
    color: #fff;
    border-color: #007BFF;
    pointer-events: none;
}

.pagination .ellipsis {
    padding: 8px 12px;
    color: #666;
}



/* Hauptlayout */
.container {
    max-width: 1200px;
    margin: 120px auto 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1000px) {
    .container {
        margin: 90px auto 20px auto;
        border-radius: 0px;
    }
}
        


.main-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Abstand zwischen Inhalt und Sidebar */
    max-width: 1200px;
    margin: 120px auto 20px auto;
}

@media (max-width: 1000px) {
    .main-wrapper {
        width: 99.99999%;
        margin: 90px auto 20px auto;
       
    }
}

.content-container {
    flex: 3; /* Hauptinhalt nimmt mehr Platz ein */
    padding: 20px;
    background-color: #000000;
    border-radius: 8px;

}

@media (max-width: 1000px) {
    .content-container {
        
        margin: 16px;
        border-radius: 8px;
       
    }
}

.sidebar {
    flex: 1; /* Sidebar nimmt weniger Platz ein */

    
}

@media (max-width: 1000px) {
    .sidebar {
        
        margin: 16px;
        border-radius: 8px;
       
    }
}


.sidebar-card {
   
    background-color: #f9f9f9;
    border-color: #f9f9f9;
    border-style: solid;
    border-width: 1px;
    vertical-align: middle;
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 12px;
}

@media (max-width: 1000px) {
    .sidebar-card {
        
        margin: 16px;
        border-radius: 8px;
       
    }
}

.sidebar img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.sidebar h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.sidebar p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    margin-bottom: 15px;
}

.sidebar  {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pml{
    color: #f4f4f4;
    background-color: #000;
    width: 100%;
}

.socials-author{
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
   
    margin: 0.5rem 0 0.9rem 0;
    
}

.sidebar .socials-author li a {
    font-size: 20px;
    color: #555;
    transition: color 0.3s;
}

.sidebar .socials-author li a:hover {
    color: #007bff;
}

/* Responsives Design */
@media (max-width: 1000px) {
    .main-wrapper {
        flex-direction: column; /* Stapelt Inhalt und Sidebar */
    }

    .content-container {
        order: 1; /* Inhalt bleibt oben */
    }

    .sidebar {
        order: 2; /* Sidebar wird unterhalb angezeigt */
        margin-top: 20px;
    }

 
}


















.o-container{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .o-container a {
    text-decoration: none; /* Entfernt die Unterstreichung */
    color: inherit; /* Übernimmt die Textfarbe des Elternelements (optional) */
}
  
  
/*new*/
.dscc-card-view-1 .grid .box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 300px;
    border: 1px solid #eee;
    text-align: center;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 10px 5px rgba(67, 67, 67, 0.554);
    flex: 1 1 calc(33.333% - 10px); /* Macht die Karten gleich breit */
    min-height: 100%; /* Wichtig: Setzt alle Boxen auf gleiche Höhe */
}

.box-after-img {
    flex-grow: 1; /* Füllt den mittleren Bereich, damit alle Boxen gleich hoch sind */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Hashtags nach oben drücken */
.dscc-card-view-1 .grid .box .features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Button fixiert am unteren Rand */
.dscc-card-view-1 .grid .box .button {
    margin-top: auto;
}
/* Medium Screens (Tablets) – 2 Karten pro Zeile */
@media (max-width: 930px) {
    .dscc-card-view-1 .grid .box {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 650px) {
    .dscc-card-view-1 .grid .box {
        flex: 1 1 100%; /* Karten nehmen die ganze Breite ein */
        min-height: auto; /* Kartenhöhe ist nicht mehr fix */
    }
}
/*new end*/

.dscc-card-view-1{
    padding:20px 0px;
  }
  

  
  .dscc-card-view-1 .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 10px;
    padding: 20px;
    align-items: stretch; /* Alle Karten in einer Zeile gleich hoch machen */
}
  
  .dscc-card-view-1 .grid .box {
    width:300px;
    border:1px solid #eee;
    text-align: center;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 10px 5px rgba(67, 67, 67, 0.554);
  }

  /* Wrapper für das Bild */
.image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    height: auto;
    
}

    /* Styling der ID unten links */
.image-id {
    position: absolute;
    bottom: 1px; /* Abstand vom unteren Rand */
    left: 1px; /* Abstand vom linken Rand */
    background-color: rgba(0, 0, 0, 0.832); /* Dunkler Hintergrund */
    color: #fff; /* Weiße Schrift */
    padding: 2px 4px; /* Polsterung */
    font-size: 10px; /* Schriftgröße */
    border-radius: 3px; /* Abgerundete Ecken */
    z-index: 11; /* Überlagert andere Inhalte */
}

.box-after-img {
    padding: 5px;
}
  
  .dscc-card-view-1 .grid .box:hover{
    transition: all 0.3s ease;
    transform: scale(1.05);
    
  }
  

  .dscc-card-view-1 .grid .box .title {
    font-size:  16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #555;
  }
  
  .dscc-card-view-1 .grid .box .name {
    margin-bottom: 20px;
  }
  
  .dscc-card-view-1 .grid .box .name b{
    display: block;
    font-size: 30px;

    color: var(--dscc-card-view-1-h2);
  
    margin-bottom: 5px;
  
  }
  .dscc-card-view-1 .grid .box .name b span{
   
    font-size: 20px;

   
  
  }
  
  .dscc-card-view-1 .grid .box .features > *{
    color: #555;
    padding: 8px 0px;
    border-bottom: 1px solid #ff040442;
  }
  
  
  
  .dscc-card-view-1 .grid .box .button button {
    width: 100%;
    margin: 25px 0px 0px;
    padding: 10px;
    background: linear-gradient(to bottom,  var(--dscc-card-view-1-button-2) , var(--dscc-card-view-1-button));
    color: #fff;
    border-radius: 10px;
    outline: none;
    font-weight: 600;
    cursor: pointer;
    box-shadow: none;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
  
  }
  
  .dscc-card-view-1 .grid .box .button button:hover{
    background: linear-gradient(to bottom, #4f5256, #86a0ac);
  }
  
  
  @media (max-width:804px) {
    .dscc-card-view-1 .grid{
      gap: 20px;
    }
    
  
  }

  /* Hashtags */
.hashtags a {
    color: inherit; /* Behält die Standardfarbe des Textes bei */
    text-decoration: none;
    cursor: pointer;
    border-color: var(--button-light-2);
    background-color: var(--button-light-2);
    color: var(--dscc-card-view-1-text);
    border: 1px solid #ccc; /* Leichter Rand */
    border-radius: 5px;
    padding: 3px 6px;
    font-size: 12px;
    margin: 1px; /* Abstand zwischen den Hashtags */
    display: inline-block; /* Stellt sicher, dass der Abstand angewendet wird */
}

.hashtags a:hover {
    color: #ffffff; /* Blau bei Hover */
    background-color: var(--button-background);

}
  
  .more_info_link{
    cursor: pointer;
    padding: 0.5rem 0.5rem;
    font-size: 1.15rem;
    border: 1px solid var(--muted-white-color);
    border-radius: 5px;
    border-color: #dee0e4;
    color: #ffffff;
    
  }
  
  .more_info_link:hover {
    cursor: pointer;
    background-color: #ffffff20;
   
  
  }
  .dscc-card-view-1 .grid .box img {
    max-width: 100%;  /* Verhindert, dass das Bild die Box verlässt */
    height: auto;     /* Hält das Seitenverhältnis bei */
    display: block;   /* Entfernt unerwünschten Platz um das Bild */
    margin: 0 auto 5px; /* Zentriert das Bild und gibt etwas Abstand */
    border-radius: 3px; /* Optional, falls du abgerundete Ecken möchtest */
}