/* Package protection public styles */
.package-protection-container {
    margin: 15px 0;
    padding: 10px;
    clear: both;
}

.package-protection-bordered {
    border: 1px solid #dddddd;
    border-radius: 4px;
}

.package-protection-highlighted {
    border: 1px solid #dddddd;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.package-protection-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.package-protection-container label {
    display: block;
    margin-bottom: 5px;
}

.package-protection-info {
    display: inline-block;
    position: relative;
    width: 16px;
    height: 16px;
    background: #f0f0f0;
    border-radius: 50%;
    text-align: center;
    line-height: 16px;
    font-size: 12px;
    font-weight: bold;
    color: #777;
    cursor: help;
    margin-left: 5px;
}

.package-protection-tooltip {
    display: none;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 12px;
    line-height: 1.5;
    z-index: 100;
}

.package-protection-info:hover .package-protection-tooltip {
    display: block;
}

.package-protection-tooltip:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid #ddd;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
}

.package-protection-logo {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    width: 16px;
    height: 16px;
}

.remove-package-protection {
    font-size: 0.85em;
    text-decoration: none;
}

.package-protection-fee-amount {
    font-weight: normal;
}