.shiperman-card {
    background-color: #f5f5f5; /* grey-lighten-2 equivalent */
    border-radius: 4px;
    box-shadow: 0 0 0 0 rgba(0,0,0,0.2);
    margin: 0 auto;
    padding: 24px;
    transition: box-shadow 0.3s ease;
    height: 100%;
    position: relative;
}

.shiperman-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.shiperman-card-header {
    padding-bottom: 16px;
}

.shiperman-card-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
}

.shiperman-orders-list {
    background-color: #f5f5f5;
}

.shiperman-order-row {
    padding: 16px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.shiperman-order-row:hover {
    background-color: rgba(25, 118, 210, 0.1); /* primary-lighten-5 equivalent */
}

.shiperman-order-avatar {
    margin-right: 16px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 30px;
}

.shiperman-order-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shiperman-order-details {
    flex: 0 0 33%;
}

.shiperman-order-title {
    font-weight: 500;
}

.shiperman-order-date {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.6); /* text-medium-emphasis equivalent */
}

.shiperman-order-recipient {
    flex: 0 0 33%;
    font-size: 0.875rem;
}

.shiperman-order-action {
    margin-left: auto;
}

.shiperman-divider {
    height: 1px;
    background-color: rgba(0,0,0,0.12);
    margin: 0;
}

.shiperman-card-actions {
    padding-top: 16px;
    display: flex;
}

.shiperman-btn {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.0892857143em;
    transition: background-color 0.2s;
}

.shiperman-btn-primary {
    background-color: #1976d2; /* primary color */
    color: white;
}

.shiperman-btn-primary:hover {
    background-color: #1565c0;
}

.shiperman-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(25, 118, 210, 0.1);
    color: #1976d2;
    text-decoration: none;
}

.shiperman-btn-icon:hover {
    background-color: rgba(25, 118, 210, 0.2);
}

.shiperman-no-orders {
    padding: 16px;
    margin: 0 16px 8px 16px;
    background-color: #ba68c8; /* secondary color - adjust as needed */
    border-radius: 4px;
}

.shiperman-no-orders-message {
    text-align: center;
    color: white;
    font-weight: 500;
    font-size: 1rem;
}