.responseText {
    display: none;
    color: red;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.responseContainerParent:hover .responseText {
    display: block;
}

body {
    padding-top: 100px;
    font-family: Arial, Helvetica, sans-serif;
    color: black;
}

.summary-productdata-table table, th, td {
    border: 1px solid;
}

.summary-productdata-table table, th.productAlign,
.summary-productdata-table table, td.productAlign {
    text-align: left;
}

.summary-productdata-table table, th.costsAlign,
.summary-productdata-table table, td.costsAlign {
    text-align: right;
}

/* Farbeinstellungen */
.alert-info {
    color: black;
    background-color: #e2972a; /* Grau statt Blau */
    border-color: #d6d6d6; /* Dunkleres Grau */
}

.alert-success {
    color: white;
    background-color: #f5f5f5; /* Grau statt Blau */
    border-color: #d6d6d6; /* Dunkleres Grau */
}

.alert-secondary {
    color: white;
    background-color: #f5f5f5; /* Grau statt Blau */
    border-color: #d6d6d6; /* Dunkleres Grau */
}

/* Default button color */
.btn-primary {
    background-color: #285596 !important;
    border-color: #285596 !important;
    color: white !important;
}

/* Button hover color */
.btn-primary:hover {
    background-color: #1f4d77 !important; /* Slightly darker shade for hover */
    border-color: #1f4d77 !important;
}

/* Active state for button */
.btn-primary:active {
    background-color: #1a4365 !important; /* Even darker for active */
    border-color: #1a4365 !important;
}

/* Focus state for button */
.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 85, 150, 0.5) !important;
}

/* Allgemeine Tabellenstile */
#summary-productdata-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 16px; /* Standard-Schriftgröße */
}

/* Header-Styling */
#summary-productdata-table thead tr {
    background-color: #f5f5f5; /* Grau statt Blau */
}

#summary-productdata-table thead th {
    color: #fff;
    padding: 12px 15px;
    text-align: left;
    font-weight: bold;
    border: 1px solid #ccc;
}

/* Set white background for specific cells */
#summary-productdata-table td.productAlign,
#summary-productdata-table td.costsAlign {
    background-color: #fff;
    color: #333;
}

/* Zeilenstil */
#summary-productdata-table tbody td {
    padding: 12px 15px;
    text-align: right;
    border: 1px solid #ccc;
}

/* Make the last row bold */
#summary-productdata-table tbody tr:last-child {
    font-weight: bold;
    border-top: 3px solid #d3d3d3; /* Thicker top border to separate it */
}

/* Alternierende Zeilenfarben */
#summary-productdata-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Hover-Effekt entfernen */
#summary-productdata-table tbody tr:hover {
    background-color: inherit;
}

/* Fettgedruckte Produktnamen */
#summary-productdata-table tbody td b {
    color: #333;
}

/* Styling für die letzte Zeile */
#summary-productdata-table tbody tr:last-child {
    border-bottom: 4px solid #ccc;
}

/* Responsive Design für kleinere Bildschirme */
@media screen and (max-width: 768px) {
    #summary-productdata-table {
        font-size: 14px;
    }

    #summary-productdata-table thead th,
    #summary-productdata-table tbody td {
        padding: 8px;
    }

    #summary-productdata-table th.productAlign {
        width: 100%;
    }

    #summary-productdata-table th.costsAlign {
        width: 50%;
    }
}

/* Schriftfarbe für h1, h2, h3, p und li auf Schwarz ändern */
h1, h2, h3 {
    color: black !important;
}

p {
    color: black !important;
}

li {
    color: black !important;
}

select option {
    color: black;
}

.chosen-container .chosen-results li {
    color: black !important;
    background-color: white !important;
}

.chosen-container .chosen-single span {
    color: black !important;
}

.chosen-container .chosen-results li.highlighted {
    color: black !important;
    background-color: #007bff !important; /* Blau für Hover behalten */
}

.chosen-container .chosen-drop {
    background-color: black !important;
}

/* Style für <hr> */
hr {
    border: 1px solid #d6d6d6; /* Dunkleres Grau */
    border-top: none; /* Optional, falls nur die Linie unten sichtbar sein soll */
}
.cart-product, 
.cart-product * {
    color: black !important;
}


.hidden {
    display: none !important;
}

.retry-address-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.retry-address-button {
  font-size: 14px;
  font-weight: bold;
  color: white !important;
  background-color: #285596;
  border-radius: 5px;
  padding: 10px 20px;
  height: 40px;
  text-decoration: none !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
  outline: none;
  border: none;
}

.retry-address-button.hidden {
  visibility: hidden;
}
