/* Professional Guidelines Styling - Website Style */
.nbdg-guideline-wrap.professional-guidelines {
    font-family: 'Poppins', sans-serif;
    background: #f4f4f6;
    color: #373737;
    margin-bottom: 2rem;
}

.nbdg-guideline-wrap.professional-guidelines h1,
.nbdg-guideline-wrap.professional-guidelines h2,
.nbdg-guideline-wrap.professional-guidelines h3,
.nbdg-guideline-wrap.professional-guidelines h4,
.nbdg-guideline-wrap.professional-guidelines h5,
.nbdg-guideline-wrap.professional-guidelines h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    color: #272044;
}

.nbdg-guideline-wrap.professional-guidelines h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.nbdg-guideline-wrap.professional-guidelines h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.nbdg-guideline-wrap.professional-guidelines h5 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.nbdg-guideline-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
}

.nbdg-guideline-section {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nbdg-guideline-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.nbdg-spec-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e8e8ec;
}

.nbdg-spec-header h4 {
    margin: 0;
    color: #272044;
    font-weight: 600;
}

.nbdg-spec-content {
    color: #373737;
    line-height: 1.6;
}

.nbdg-available-formats {
    margin-bottom: 1rem;
}

.nbdg-available-formats strong {
    color: #272044;
    font-weight: 600;
}

.nbdg-format-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.nbdg-format-tag {
    background: #272044;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 2px solid #272044;
    transition: all 0.3s ease;
}

.nbdg-format-tag:hover {
    background: #ffc107;
    color: white;
    border-color: #ffc107;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.nbdg-file-requirements {
    background: white;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
}

.nbdg-file-requirements h5 {
    color: #272044;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.nbdg-file-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.nbdg-file-type {
    background: #f4f4f6;
    padding: 0.5rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #373737;
    border: 1px solid #e8e8ec;
}

.nbdg-tips {
    background: #e8e8ec;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0 8px 8px 0;
}

.nbdg-tips h5 {
    color: #272044;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.nbdg-tips ul {
    margin: 0;
    padding-left: 1.5rem;
    color: #373737;
}

.nbdg-tips li {
    margin-bottom: 0.25rem;
}

.nbdg-color-profiles {
    margin-top: 1rem;
}

.nbdg-color-profile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    background: #f4f4f6;
    border-radius: 6px;
}

.nbdg-color-profile strong {
    color: #272044;
    font-weight: 600;
}

.nbdg-color-profile span {
    color: #373737;
    font-size: 0.9rem;
}

.nbdg-fixed-dimensions,
.nbdg-custom-dimensions,
.nbdg-flexible-dimensions {
    padding: 0.75rem;
    border-radius: 6px;
    margin-top: 0.5rem;
}

.nbdg-fixed-dimensions {
    background: #e8f0fe;
    border: 1px solid #272044;
    color: #272044;
}

.nbdg-custom-dimensions {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #272044;
}

.nbdg-flexible-dimensions {
    background: #f4f4f6;
    border: 1px solid #e8e8ec;
    color: #373737;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nbdg-guideline-sections {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nbdg-format-tags {
        gap: 0.3rem;
    }
    
    .nbdg-format-tag {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* Buttons and Interactive Elements */
.nbdg-button {
    font-weight: 600;
    background: #ffc107;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.nbdg-button:hover {
    background: #272044;
    box-shadow: none;
    transition: all 0.5s;
}

/* Form Elements */
.nbdg-field-input-wrap input:focus {
    background: #e8f0fe;
    transition: all 0.3s ease-in-out;
}

/* Animation for smooth transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nbdg-guideline-section {
    animation: fadeInUp 0.6s ease-out;
}

.nbdg-guideline-section:nth-child(2) {
    animation-delay: 0.1s;
}

.nbdg-guideline-section:nth-child(3) {
    animation-delay: 0.2s;
}

.nbdg-guideline-section:nth-child(4) {
    animation-delay: 0.3s;
}

/* Custom tooltips */
.nbdg-tooltip {
    background: #373737;
    color: white;
    border-radius: 15px;
    padding: 0.7rem 1rem;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    box-shadow: none;
    border: none;
}

/* Print styles */
@media print {
    .nbdg-guideline-wrap.professional-guidelines {
        background: white !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
}