/* Widget Container */
.ttp-widget-box {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    max-width: fit-content;
}

/* Header Section */
.ttp-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ttp-logo {
    width: 100px;
    height: 100px;
    border-radius: 8px;
}

.ttp-header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}

.ttp-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px; /* Remove default margin */
}

/* Rating Section */
.ttp-rating-container {
    display: flex;
    align-items: center;
    gap: 3px;
}

.ttp-rating-value {
    font-size: 14px;
    font-weight: 700;
    margin: 0; /* Remove default margin */
}

.ttp-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* SVG Star Styling */
.ttp-star-outline {
    fill: #e0e0e0;
}

.ttp-star-fill {
    fill: #FFD700;
}

/* Footer Section */
.ttp-footer {
    font-size: 12px;
    margin: 0; /* Remove default margin */
}

.ttp-footer strong {
    font-weight: 600;
}

.ttp-p-list {
    font-size: 8px;
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
}