
/*
    -----------------------------
    Company Deatils Page
    -----------------------------
*/
/* Base Styles */
.premium-page-wrapper {
    background-color: #ffffff;
    padding: 1.5rem; /* Mobile padding */
    font-family: 'Inter', sans-serif;
    color: #1d1d1f;
}

/* Tablet & Desktop Padding Adjustment */
@media (min-width: 768px) {
    .premium-page-wrapper {
        padding: 3rem 4rem;
    }
}

@media (min-width: 1200px) {
    .premium-page-wrapper {
        padding: 3rem 6rem;
    }
}

/* Header Adjustments */
.main-title {
    font-weight: 800;
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .main-title {
        font-size: 1.8rem;
    }
}

.header-actions {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .header-actions {
        margin-top: 0;
        justify-content: flex-end;
    }

    .w-mobile-100 {
        width: auto !important;
    }
}

@media (max-width: 767px) {
    .w-mobile-100 {
        width: 100% !important;
    }

    .header-stack {
        flex-direction: column;
        align-items: flex-start !important;
    }
}

/* Bento System Responsive */
.bento-item {
    background: #fbfbfd;
    border-radius: 24px;
    padding: 1.5rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.03);
}

@media (min-width: 768px) {
    .bento-item {
        border-radius: 32px;
        padding: 2.5rem;
    }
}

.plan-title {
    font-size: 1.8rem;
    font-weight: 800;
}

.price-val {
    font-size: 2.5rem;
    font-weight: 800;
}

@media (min-width: 768px) {
    .plan-title {
        font-size: 2.5rem;
    }

    .price-val {
        font-size: 3.5rem;
    }
}

/* Admin UI Responsive */
.admin-flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .admin-flex-container {
        flex-direction: row;
        text-align: left;
    }
}

.admin-avatar-glow {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.custom-avatar {
    font-size: 2rem;
    font-weight: 800;
}

.admin-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-info-item {
    font-size: 0.9rem;
    color: #86868b;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

@media (min-width: 768px) {
    .admin-info-item {
        justify-content: flex-start;
    }
}

/* Utils */
.rz-text-align-md-right {
    text-align: center;
}

@media (min-width: 768px) {
    .rz-text-align-md-right {
        text-align: right;
    }
}
/* মেইন চিপ কন্টেইনার */
.status-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.85rem;
    font-weight: 600;
    gap: 8px;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

    /* একটিভ স্ট্যাটাস (Green) */
    .status-chip.active {
        background-color: rgba(34, 197, 94, 0.15); /* হালকা সবুজ ব্যাকগ্রাউন্ড */
        color: #15803d; /* গাঢ় সবুজ টেক্সট */
        border: 1px solid rgba(34, 197, 94, 0.3);
    }

    /* ইন-একটিভ স্ট্যাটাস (Red/Grey) */
    .status-chip.inactive {
        background-color: rgba(239, 68, 68, 0.1);
        color: #b91c1c;
        border: 1px solid rgba(239, 68, 68, 0.2);
    }

/* পালস ডট বেস স্টাইল */
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

/* একটিভ হলে ডটের কালার এবং এনিমেশন */
.active .pulse-dot {
    background-color: #22c55e;
}

    .active .pulse-dot::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: inherit;
        border-radius: 50%;
        z-index: 1;
        animation: status-pulse 1.5s ease-out infinite;
    }

/* ইন-একটিভ হলে ডটের কালার (এনিমেশন ছাড়া) */
.inactive .pulse-dot {
    background-color: #ef4444;
}

/* পালস এনিমেশন কি-ফ্রেম */
@keyframes status-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/*
    -----------------------------
    End Company Deatils Page
    -----------------------------
*/


/*
    -----------------------------
    Company Create and Edit Page
    -----------------------------
*/
.cmp-prof-create-bg {
    min-height: 100vh;
    padding: 3rem 0;
}

.cmp-prof-create-card {
    border: none !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
    overflow: hidden;
}

.cmp-prof-create-stepper-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 2.5rem;
    color: white;
    text-align: center;
}

.cmp-prof-form-box {
    border: 1px solid #edf2f7;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: #fcfcfd;
}

.cmp-prof-label-premium {
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Custom Input Focus effect */
::deep .rz-textbox:focus, ::deep .rz-numeric-input:focus {
    border-color: #4f46e5 !important;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1) !important;
}
/* Matte Dark Button Style */
.cmp-prof-btn-dark {
    background-color: #0f172a !important; /* Deep Slate/Charcoal */
    color: #f8fafc !important;
    border-radius: 12px !important;
    padding: 0.8rem 2.5rem !important;
    font-weight: 600 !important;
    border: 1px solid #1e293b !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.cmp-prof-btn-dark:hover {
    background-color: #1e293b !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2) !important;
    border-color: #334155 !important;
}

.cmp-prof-btn-dark:active {
    transform: translateY(0);
}

/* Secondary Matte Style for Cancel button */
.cmp-prof-btn-cancel {
    color: #64748b !important;
    font-weight: 600 !important;
    background: transparent !important;
    border-radius: 12px !important;
    transition: all 0.2s ease !important;
}

.cmp-prof-btn-cancel:hover {
    color: #0f172a !important;
    background: #f1f5f9 !important;
}
.cmp-prof-edit-bg { 
    min-height: 100vh;
    padding: 3rem 0;
}

.cmp-prof-edit-card {
    border: none !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
    overflow: hidden;
}

.cmp-prof-edit-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 2.5rem;
    color: white;
    text-align: center;
}

.cmp-prof-edit-box {
    border: 1px solid #edf2f7;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: #fcfcfd;
}

/* Matte Dark Button */
.cmp-prof-btn-mat-dark {
    background-color: #0f172a !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    padding: 0.8rem 2.5rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
}

.cmp-prof-btn-mat-dark:hover {
    background-color: #1e293b !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15) !important;
}

/*
    -----------------------------
    End Company Create and Edit Page
    -----------------------------
*/