/* CSS reset */

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-optical-sizing: auto;
}

/* Font family */
@font-face {
    font-family: 'Roboto Slab';
    font-stretch: normal;
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/RobotoSlab/RobotoSlab-VariableFont_wght.ttf') format('truetype');
}

/* Colors */
:root {
    --color-primary: #ff964d;
    --color-success: #79df8a;
    --color-warning: #ffdf63;
    --color-danger: #e74c3c;
    --color-background: #e6e6e6;
    --color-text-main: #0d0b0e;
    --color-text-fields: #333333;
    --color-text-alt: #666666;
    --color-surface-main: #ffffff;
    --color-surface-muted: #f1f1f0;
    --color-surface-bright: #fafafa;
    --color-table-header: #e0dedd;
    --color-border-soft: #ebebeb;
    --color-border-muted: #b6b6b6;
    --color-border-strong: #8f8f8f;
    --color-muted-dot: #d0d0d0;
    --color-muted-fill: #f3f3f3;
    --color-muted-line: #f2f2f2;
    --color-muted-mid: #8e8e8e;
    --color-muted-dark: #2b2b2b;
    --color-muted-subtle: #5e5e5e;
    --color-surface-soft: #ececec;
    --color-field-soft: #f6f6f6;
    --color-product-1: #80d6e3;
    --color-product-2: #ffdf63;
    --color-product-3: #7da3d7;
    --color-product-4: var(--color-success);
    --color-product-5: #e8a58b;
}

*, html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Calibri', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Calibri', sans-serif;
    font-weight: 700;
    color: var(--color-text-main);
}

header {
    background-color: var(--color-background);
    height: 100px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 2px solid var(--color-surface-main);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    display: block;
    width: auto;
    max-width: 180px;
    max-height: 54px;
    object-fit: contain;
}

.user-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
    border: 2px solid var(--color-surface-main);
}

.user-avatar img {
    width: 100%;
    height: 100%;
}

.sign-out {
    border-radius: 20px;
    background-color: var(--color-surface-main);
    border: none;
    color: var(--color-text-main);
    font-size: 18px;
    font-family: 'Calibri', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    height: 40px;
    padding: 0 10px 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    cursor: pointer;
}

.sign-out img {
    width: 30px;
    height: 30px;
}

main {
    display: flex;
    width: 100%;
    background-color: var(--color-background);
    height: calc(100vh - 100px);
    overflow: hidden;
    flex-direction: row;
    padding-top: 40px;
}

main aside {
    width: 160px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

main aside ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

main aside ul li:not(:last-child) {
    margin-bottom: 20px;
}

main aside ul li a {
    display: inline-block;
    width: auto;
    padding: 10px;
    border-radius: 12px;
}

main aside ul li.active a {
    background-color: var(--color-surface-main);
}

main aside ul li img {
    width: 44px;
    height: 44px;
}

main .main-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

main .main-content .content-title {
    margin-bottom: 20px;
}

main .main-content .content-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    /* space between cards */
    gap: 20px;
}

.title-font {
    font-size: 36px;
    font-family: 'Roboto Slab', sans-serif;
}

.title-font.is-small {
    font-size: 32px;
}

.card {
    background-color: var(--color-surface-main);
    border-radius: 12px;
    padding: 30px;
    width: 100%;
}

.card.no-bottom-radius {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.card.has-children {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.card.is-small {
    padding: 14px 18px;
}

.card:has(.card-header) {
    padding-top: 20px;
}

.card-header {
    margin-bottom: 16px;
    display: flex;
    gap: 14px;
}

.card-header.has-separator {
    border-bottom: 2px solid var(--color-border-soft);
    padding-bottom: 12px;
}

.card-header .card-header-icon {
    height: 26px;
    width: 26px;
}

.card-header .card-header-icon img {
    width: 100%;
    height: 100%;
}

.card-header .card-header-title {
    font-size: 20px;
    text-transform: uppercase;
}

.activities {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

.activities .activity {
    width: 100%;
}

.activities .activity table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    font-size: 16px;
}

.activities .activity thead tr th{
    background-color: var(--color-table-header);
    padding: 8px 16px;
    font-size: inherit;
}

.activities .activity tbody tr td {
    background-color: var(--color-surface-alt);
    padding: 8px 16px;
    text-align: center;
    font-size: inherit;
}

.activities .activity thead tr th:nth-child(1),
.activities .activity tbody tr td:nth-child(1) {
    width: 200px;
    text-align: left;
    border-right: 2px solid var(--color-surface-main);
}

.activities .activity thead tr th:nth-child(1) {
    text-transform: uppercase;
}

.activities .activity thead tr th:nth-child(2),
.activities .activity tbody tr td:nth-child(2) {
    text-align: left;
}

.activities .activity .activity-timestamp {
    float: right;
    display: block;
    font-size: 14px;
    color: var(--color-text-main);
    background-color: var(--color-surface-main);
    padding: 3px 8px;
    border-radius: 12px;
}

.activities .activity .activity-link {
    float: right;
}

.activities .activity .activity-link img {
    height: 16px;
}

.activities .activity .activity-status {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--color-surface-main);
    margin-right: 10px;
    border: 1px solid var(--color-surface-main);
}

.activities .activity .activity-status.success {
    background-color: var(--color-success);
}

.activities .activity .activity-status.warning {
    background-color: var(--color-warning);
}

.activities .activity .activity-status.error {
    background-color: var(--color-danger);
}

.stat-cards {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 30px;
}

.stat-cards .stat-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 12px;
    background-color: var(--color-background);
}

.stat-cards .stat-card .stat-icon {
    width: 100%;
    max-width: 100px;
}

.stat-cards .stat-card .stat-metric {
    font-size: 48px;
}

.stat-cards .stat-card .stat-label {
    color: var(--color-text-alt);
    text-transform: uppercase;
}

.sites-per-product {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    background-color: var(--color-background);
}

.sites-per-product .sites-per-product-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.sites-per-product .sites-per-product-cards {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
}

.sites-per-product .sites-per-product-cards .sites-per-product-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 12px;
    background-color: var(--color-surface-main);
}

.sites-per-product .sites-per-product-cards .sites-per-product-card .sites-per-product-card-label {
    color: var(--color-text-alt);
    text-transform: uppercase;
}

.content-wrapper--single {
    align-items: flex-start;
}

.btn {
    display: inline-flex;
    border: none;
    border-radius: 20px;
    font-family: 'Calibri', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 0 18px 0 18px;
    height: 36px;
    text-decoration: none;
    cursor: pointer;
    text-transform: uppercase;
    border: none;
    white-space: nowrap;
    align-items: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-main);
}

.btn-secondary {
    background-color: var(--color-border-muted);
    color: var(--color-surface-main);
}

.btn-danger {
    background-color: var(--color-danger);
    color: var(--color-text-main);
}

.btn-warning {
    background-color: var(--color-warning);
    color: var(--color-text-main);
}

.btn.has-icon {
    gap: 8px;
    padding: 0 10px 0 18px;
}

.btn.has-icon img {
    width: 30px;
    height: 30px;
}

.customers-header,
.customer-sites-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.customers-header h3,
.customer-sites-header h3 {
    font-size: 32px;
}

.management-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 12px;
}

.management-table thead th {
    background-color: var(--color-table-header);
    color: var(--color-text-main);
    text-align: left;
    padding: 10px 12px;
}

.management-table tbody td {
    background-color: var(--color-surface-alt);
    padding: 10px 12px;
}

.management-table tbody tr + tr td {
    border-top: 2px solid var(--color-surface-main);
}

.table-link {
    color: var(--color-text-main);
    font-weight: 600;
}

.customer-page {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.customer-page .customer-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.customer-page .customer-header .customer-number {
    font-family: 'Calibri', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-main);
    background-color: var(--color-surface-main);
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 24px;
}

.is-flex {
    display: flex;
    gap: 20px;
}

.columns {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.is-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.is-column.is-small {
    gap: 10px;
}

.is-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.is-row.is-small {
    gap: 10px;
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-list .detail-list-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.detail-list .detail-list-row span {
    color: var(--color-text-alt);
    width: 50%;
}

.detail-list .detail-list-row strong {
    color: var(--color-text-main);
    border-radius: 12px;
    background-color: var(--color-surface-bright);
    padding: 5.5px 12px;
    width: 50%;
}

.customer-action-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.products-page {
    width: 100%;
}

.products-layout {
    display: flex;
    gap: 20px;
    width: 100%;
}

.products-filters {
    width: 320px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.products-filters h3 {
    font-size: 32px;
}

.filter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-label {
    font-family: 'Calibri', sans-serif;
    font-weight: 700;
}

.filter-select {
    width: 100%;
    border: 2px solid var(--color-border-muted);
    border-radius: 8px;
    padding: 8px;
    font-size: 16px;
}

.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.products-table-wrap {
    width: 100%;
}

/* Mockup parity overrides */
main aside {
    width: 120px;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

main aside ul {
    gap: 22px;
}

main aside ul li:not(:last-child) {
    margin-bottom: 0;
}

main aside ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 20px;
}

main aside ul li.active a {
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
}

.sidebar-menu-toggle {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sidebar-menu-toggle img {
    width: 44px;
    height: 44px;
}

.sidebar-nav-main {
    margin-top: 4px;
}

.sidebar-nav-bottom {
    margin-top: auto;
    margin-bottom: 8px;
}

main .main-content {
    padding-right: 22px;
}

.content-wrapper--dashboard {
    flex: 1;
    min-height: 0;
    align-items: stretch;
}

.card {
    border-radius: 24px;
}

.stat-cards .stat-card,
.sites-per-product,
.dashboard-panel,
.mails-sent-item,
.products-row,
.site-info-grid {
    border-radius: 18px;
}

.activities {
    max-height: none;
    overflow: hidden;
}

.dashboard-main-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

.dashboard-main-card .stat-card {
    padding: 16px;
    background-color: var(--color-surface-muted);
}

.activities .activity table {
    font-size: 14px;
}

.activities .activity .activity-timestamp {
    display: block;
}

.sites-per-product .sites-per-product-cards .sites-per-product-card {
    width: auto;
    padding: 12px 14px;
    border-radius: 16px;
}

.sites-per-product .sites-per-product-cards .sites-per-product-card .sites-per-product-card-label {
    font-size: 14px;
}

.sites-per-product {
    align-items: stretch;
    padding: 16px 20px;
    gap: 12px;
    background-color: var(--color-surface-muted);
}

.sites-per-product .is-half:first-child {
    display: flex;
    flex-direction: column;
    width: 64%;
}

.sites-per-product .sites-per-product-chart {
    width: 36%;
    border-left: 1px solid var(--color-muted-line);
    padding-left: 12px;
}

.sites-per-product .sites-per-product-title {
    margin-bottom: 10px;
}

.sites-per-product .sites-per-product-cards {
    display: flex;
    gap: 10px;
    width: 100%;
}

.sites-per-product .sites-per-product-cards .sites-per-product-card {
    position: relative;
    align-items: center;
    justify-content: center;
    min-height: 112px;
    aspect-ratio: 1 / 1;
    flex: 1;
    min-width: 0;
    text-align: center;
    background-color: var(--color-surface-bright);
}

.sites-per-product .sites-per-product-cards .sites-per-product-card h3 {
    margin-top: 8px;
    font-size: 38px;
    line-height: 1;
}

.sites-per-product .sites-per-product-cards .sites-per-product-card .sites-per-product-card-label {
    display: block;
    width: 100%;
    color: var(--color-text-main);
    text-align: center;
    line-height: 1.2;
    font-size: 12px;
    letter-spacing: 0.6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-color-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    position: absolute;
    top: 10px;
    right: 10px;
}

.sites-per-product-chart {
    min-height: 182px;
}

.sites-per-product-chart canvas {
    width: 100%;
    height: 100%;
}

.dashboard-row-two {
    display: flex;
    gap: 30px;
}

.dashboard-panel {
    background-color: var(--color-surface-muted);
    padding: 16px 20px;
}

.dashboard-panel-title {
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.mails-sent-grid {
    display: flex;
    gap: 12px;
}

.mails-sent-item {
    width: 100%;
    background-color: var(--color-surface-bright);
    padding: 18px;
    text-align: center;
}

.mails-sent-label {
    color: var(--color-text-alt);
    font-size: 14px;
    margin-bottom: 8px;
}

.alerts-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.alert-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-surface-bright);
    border-radius: 999px;
    padding: 10px 14px;
    color: var(--color-text-main);
    text-decoration: none;
}

.alert-row > img {
    width: 16px;
    height: 16px;
}

.alert-row-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.alert-row-left img {
    width: 18px;
    height: 18px;
}

.pager-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.pager-dots--activity {
    align-items: center;
}

.pager-dots--alerts {
    align-items: center;
}

.pager-dot-track {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.pager-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-muted-dot);
}

.pager-dots span.active {
    background-color: var(--color-muted-dark);
}

.pager-dots .pager-dot-button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: var(--color-muted-dot);
    cursor: pointer;
    padding: 0;
}

.pager-dots .pager-dot-button.active {
    background-color: var(--color-muted-dark);
}

.pager-nav-button {
    width: 22px;
    height: 22px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pager-nav-button img {
    width: 14px;
    height: 14px;
}

.pager-nav-button:disabled {
    opacity: 0.35;
    cursor: default;
}

.dashboard-activity-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dashboard-activity-card .activities {
    flex: 1;
    min-height: 0;
    gap: 10px;
}

.dashboard-activity-card .activity thead tr th {
    background-color: var(--color-table-header);
    color: var(--color-text-alt);
}

.dashboard-activity-card .activity tbody tr td {
    background-color: var(--color-surface-bright);
    color: var(--color-text-alt);
}

.dashboard-activity-card .activity .activity-timestamp {
    color: var(--color-text-alt);
}

.action-btn {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: var(--color-surface-main);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border-muted);
}

.action-btn img {
    width: 20px;
    height: 20px;
}


.customer-section-header {
    border-bottom: 2px solid var(--color-surface-soft);
    padding-bottom: 14px;
}

.customer-section-header img {
    width: 34px;
    height: 34px;
}

.customer-section-header h3 {
    text-transform: uppercase;
}

.customer-badge {
    background-color: var(--color-surface-main);
    padding: 12px 34px;
}

.customer-sites-toolbar {
    margin-bottom: 14px;
}

.management-table--sites th,
.management-table--sites td {
    text-transform: uppercase;
}

.site-domain-cell {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.site-radio {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--color-border-strong);
    background-color: var(--color-muted-fill);
    display: inline-block;
}

.status-item {
}

.status-item::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    background-color: var(--color-muted-mid);
}

.status-item.success::before {
    background-color: var(--color-success);
}

.status-item.warning::before {
    background-color: var(--color-warning);
}

.status-item.error::before {
    background-color: var(--color-muted-dark);
}

.site-info-grid {
    background-color: var(--color-surface-soft);
    padding: 14px;
    gap: 20px;
    margin-bottom: 16px;
}

.credential-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.credential-value {
    display: inline-block;
    min-height: 30px;
    border-radius: 16px;
    background-color: var(--color-surface-bright);
}

.credential-actions {
    display: inline-flex;
    gap: 6px;
}

.credential-action {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--color-border-muted);
    background-color: var(--color-surface-main);
}

.products-filters h3,
.filter-group h4 {
    text-transform: uppercase;
}

.filter-form {
    gap: 16px;
}

.filter-group {
    border-top: 2px solid var(--color-surface-soft);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-group h4 {
    font-size: 28px;
}

.filter-label {
    font-family: 'Calibri', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-muted-subtle);
}

.filter-select {
    border-radius: 999px;
}

.products-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.products-row {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 0.8fr 0.8fr 0.7fr 24px;
    align-items: center;
    background-color: var(--color-surface-alt-bright);
    overflow: hidden;
}

.products-row > span,
.products-row > a {
    padding: 10px 14px;
    border-right: 1px solid var(--color-border-soft);
    text-transform: uppercase;
}

.products-row > a {
    border-right: none;
    text-align: center;
}

.products-row > a img {
    width: 16px;
    height: 16px;
}

.products-activity::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    background-color: var(--color-muted-dark);
}

.products-activity--on::before {
    background-color: var(--color-success);
}

.products-activity--error::before {
    background-color: var(--color-warning);
}

.products-empty {
    background-color: var(--color-surface-alt-bright);
    border-radius: 16px;
    padding: 14px;
}


/* Background Utilities */
.has-background-soft { background-color: var(--color-surface-soft);}
.has-background-muted { background-color: var(--color-surface-muted);}
.has-background-bright { background-color: var(--color-surface-bright);}
.has-background-alt { background-color: var(--color-surface-alt);}
.has-background-alt-bright { background-color: var(--color-surface-alt-bright);}

/* Width Utilities */
.is-full { width: 100%; }
.is-half { width: 50%; }
.is-one-third { width: 33.33%; }
.is-two-thirds { width: 66.66%; }

.is-one-fifth { width: 20%; }
.is-two-fifths { width: 40%; }
.is-three-fifths { width: 60%; }
.is-four-fifths { width: 80%; }


/* Height Utilities */
.is-full-height { height: 100%; }


/* Flex Utilities */
.space-between { justify-content: space-between; }

/* Padding Utilities */
.p-0 { padding: 0 !important; }
.p-1 { padding: 4px !important; }
.p-2 { padding: 8px !important; }
.p-3 { padding: 12px !important; }
.p-4 { padding: 16px !important; }
.p-5 { padding: 20px !important; }
.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 4px !important; }
.pt-2 { padding-top: 8px !important; }
.pt-3 { padding-top: 12px !important; }
.pt-4 { padding-top: 16px !important; }
.pt-5 { padding-top: 20px !important; }
.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 4px !important; }
.pb-2 { padding-bottom: 8px !important; }
.pb-3 { padding-bottom: 12px !important; }
.pb-4 { padding-bottom: 16px !important; }
.pb-5 { padding-bottom: 20px !important; }
.pl-0 { padding-left: 0 !important; }
.pl-1 { padding-left: 4px !important; }
.pl-2 { padding-left: 8px !important; }
.pl-3 { padding-left: 12px !important; }
.pl-4 { padding-left: 16px !important; }
.pl-5 { padding-left: 20px !important; }
.pr-0 { padding-right: 0 !important; }
.pr-1 { padding-right: 4px !important; }
.pr-2 { padding-right: 8px !important; }
.pr-3 { padding-right: 12px !important; }
.pr-4 { padding-right: 16px !important; }
.pr-5 { padding-right: 20px !important; }

/* Margin Utilities */
.m-0 { margin: 0 !important; }
.m-1 { margin: 4px !important; }
.m-2 { margin: 8px !important; }
.m-3 { margin: 12px !important; }
.m-4 { margin: 16px !important; }
.m-5 { margin: 20px !important; }