p.b2-tip{
  padding: 12px 24px 12px 30px;
  border-left-width: 4px;
  border-left-style: solid;
  background-color: #f8f8f8;
  position: relative;
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
}
p.b2-tip:before{
  position: absolute;
  top: 14px;
  left: -12px;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  text-align: center;
  line-height: 20px;
  font-weight: bold;
  font-family: "Dosis", "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
}
p.b2-tip{
  content: "";
}
p.b2-tip.b2-alert-success:before{
  content: "✓";
  background-color: #67c23a;
}

p.b2-tip.b2-alert-success{
  border-left-color: #67c23a;
  background-color: #f0f9eb;
  color: #67c23a;
}

p.b2-tip.b2-alert-info:before{
  content: "i";
  background-color: #03A9F4;
}

p.b2-tip.b2-alert-info{
  border-left-color:  #03A9F4;
  background-color: #e5f6fe;
  color: #03A9F4;
}

p.b2-tip.b2-alert-light:before{
  content: "♪";
  background-color: #909399;
}

p.b2-tip.b2-alert-light{
  background-color: #f4f4f5;
  border-left-color:  #909399;
  color: #909399;
}

p.b2-tip.b2-alert-warning:before{
  content: "✕";
  background-color: #f56c6c;
}

p.b2-tip.b2-alert-warning{
  border-left-color:  #f56c6c;
  background-color: #fef0f0;
  color: #f56c6c;
}

p.b2-tip:before,p.b2-tip.b2-alert-primary:before{
  content: "!";
  background-color: #e6a23c;
}

p.b2-tip,p.b2-tip.b2-alert-primary{
  border-left-color:  #e6a23c;
  background-color: #fdf6ec;
  color: #e6a23c;
}

.editor-styles-wrapper p.b2-shortcode-desc{
  font-size: 12px;
  margin:10px 0;
  color:#999
}
.b2-block-shortcode .components-base-control__field{
  margin-bottom:0
}
.b2-shortcode-button button{
  margin-right:10px;
  font-size: 14px;
}

.b2-website-block {
  padding: 20px;
  background: #f8f8f8;
  border-radius: 4px;
}

.b2-website-field {
  margin-bottom: 15px;
}

.b2-website-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
}

.b2-website-field input,
.b2-website-field textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.b2-website-field textarea {
  resize: vertical;
}

.b2-website-preview {
  margin-top: 20px;
  padding: 15px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

.b2-website-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.b2-website-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.b2-website-item:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.b2-website-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2-website-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.b2-website-icon-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 24px;
}

.b2-website-info {
  flex: 1;
  min-width: 0;
}

.b2-website-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
}

.b2-website-description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}