/* Verdi Data & IT-Drift AS Plugin Styles */

/* assets/css/styles.css */

/* General styles for the plugin admin pages */
.wrap h1 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 20px;
}

input[type="email"] {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
}

input[type="checkbox"] {
    margin-left: 10px;
}

.button-primary {
    background-color: #3498db;
    border-color: #2980b9;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    margin-right: 10px;
    border-radius: 4px;
    cursor: pointer;
}

.button-primary:hover {
    background-color: #2980b9;
}

/* Dashboard widget styles */
.verdi-data-it-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.verdi-data-it-widget img {
    max-width: 150px;
    margin-bottom: 20px;
}

.verdi-data-it-widget div {
    margin-bottom: 10px;
}

.verdi-data-it-widget p {
    margin: 5px 0;
}

/* Custom product image styles for WooCommerce */
.woocommerce ul.products li.product a img, 
.woocommerce-page ul.products li.product a img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

/* Admin footer text styles */
#wpfooter {
    text-align: center;
    font-size: 12px;
    color: #7f8c8d;
}

#wpfooter a {
    color: #3498db;
    text-decoration: none;
}

#wpfooter a:hover {
    text-decoration: underline;
}

/* tooltip */
#tooltip {
    color: #fff;
}
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.tiptool {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.tiptool .tooltip-text {
    visibility: hidden;
    width: 220px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -110px;
    opacity: 0;
    transition: opacity 0.3s;
}
.tiptool .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}
.tiptool:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
.txt-white {
    color: #fff;
}
