/* General styles */
.ai-tool-single-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

/* Header container */
.ai-tool-header-container {
    background-color: #FBFBFB;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
}

/* Content container */
.ai-tool-content-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 80%;
    margin: 0 auto;
}

/* Header styles */
.ai-tool-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.ai-tool-header-left {
    flex: 1 1 60%;
    min-width: 300px;
}

.ai-tool-header-right {
    flex: 1 1 35%;
    min-width: 250px;
}

.ai-tool-logo-title-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.ai-tool-logo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    margin-right: 20px;
    object-fit: cover;
}

.ai-tool-title-info {
    display: flex;
    flex-direction: column;
}

.ai-tool-title {
    font-size: 28px;
    margin: 0 0 5px 0;
    color: #7C4DFF;
}

.ai-tool-type-wrapper {
    display: flex;
    align-items: center;
}

.ai-tool-type-label {
    font-weight: bold;
    margin-right: 5px;
}

.ai-tool-type {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ai-tool-type:hover {
    color: #7C4DFF;
}

.ai-tool-verified {
    display: inline-flex;
    align-items: center;
    color: #49ADFF;
    font-size: 14px;
    font-weight: 600;
    margin-top: 5px;
}

.ai-tool-verified svg {
    margin-right: 5px;
}

.tooltip {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    cursor: help;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-weight: normal;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.ai-tool-excerpt {
    max-width: 100%;
    margin-bottom: 20px;
}

.ai-tool-featured-image {
    width: 100%;
    margin-bottom: 20px;
}

.ai-tool-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.ai-tool-website-button-wrapper {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.ai-tool-website-button {
    display: inline-block;
    background-color: #7C4DFF;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.ai-tool-website-button:hover {
    background-color: #6039c8;
}

.ai-tool-affiliate-link {
    font-size: 12px;
    color: #666;
    margin-left: 10px;
}

.ai-tool-meta {
    margin-top: 20px;
}

.ai-tool-categories,
.ai-tool-tags,
.ai-tool-pricing {
    margin-bottom: 10px;
}

.ai-tool-category,
.ai-tool-tag {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ai-tool-category:hover,
.ai-tool-tag:hover {
    color: #7C4DFF;
}

/* Responsive styles */
@media (max-width: 768px) {
    .ai-tool-header {
        flex-direction: column;
    }

    .ai-tool-header-left,
    .ai-tool-header-right {
        width: 100%;
    }

    .ai-tool-header-right {
        order: 2;
    }

    .ai-tool-meta {
        order: 3;
    }

    .ai-tool-website-button-wrapper {
        order: 4;
    }
}