/* Reset all margins and padding */
.bb-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bb-container {
    display: flex;
    flex-direction: column;
    background-color: #f5fff5;
    padding: 20px;
    border-radius: 8px;
    max-width: 700px;
    margin: 20px auto;
    box-shadow: 5px 5px 0 rgba(19, 64, 79, .1);
    position: relative;
    overflow: visible !important;
}

.bb-recommended {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #2e7d32;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.bb-content {
    display: flex;
    width: 100%;
    gap: 20px;
    margin-top: 15px;
}

.bb-image {
    flex: 0 0 150px;
}

.bb-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.bb-details {
    flex: 1;
    min-width: 0;
}

.bb-title {
    font-size: 20px;
    margin-bottom: 5px;
    word-wrap: break-word;
}

.bb-author {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.bb-rating {
    margin-bottom: 10px;
}

.bb-category {
    margin-bottom: 10px;
}

.bb-description {
    margin-bottom: 15px;
    line-height: 1.5;
}

.bb-btn {
    display: inline-block;
    background-color: #aa0000;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
}
.bb-btn:hover {
	background-color: #088500 !important;
	color: white !important;
}

@media (max-width: 600px) {
    .bb-content {
        flex-direction: column;
    }
    
    .bb-image {
        margin-bottom: 15px;
    }
	.bb-image img {
		margin-top: 10px;
	}
}