/* 卡片容器樣式 */
.card-container {
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
}

/* 核心卡片樣式 */
.pricing-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* 柔和的陰影 */
    padding: 25px 20px;
    transition: all 0.3s ease;
    height: 100%; /* 確保所有卡片高度一致 */
    display: flex;
    flex-direction: column;
}

/* 卡片懸停效果 */
.pricing-card:hover {
    transform: translateY(-5px); /* 輕微上浮 */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); /* 更明顯的陰影 */
}

/* 價格方案名稱 */
.card-title {
    font-size: 24px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 10px;
    color: #333;
}

/* 描述文字 */
.card-description {
    color: #6c757d;
    margin-bottom: 10px;
    font-size: 14px;
}

/* 特點標籤 */
.feature-tag {
    display: inline-block;
    background-color: #e9ecef; /* 淺灰背景 */
    color: #495057;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 15px;
}

/* 額外資訊 */
.additional-info {
    color: #adb5bd;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 25px;
}

/* 動作按鈕 */
.card-action {
    margin-top: auto; /* 將按鈕推到底部 */
}
.btn-primary-custom {
    background-color: #007bff;
    border-color: #007bff;
    color: white;
    /*border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;*/
    transition: background-color 0.2s;
}
.btn-primary-custom:hover, .btn-primary-custom:focus {
    background-color: #0056b3;
    border-color: #0056b3;
    color: white;
}

.btn-outline-custom {
    background-color: transparent;
    border: 2px solid #ced4da;
    color: #495057;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 16px;
    transition: all 0.2s;
}
.btn-outline-custom:hover {
    border-color: #007bff;
    color: #007bff;
}

/* 專家推薦 / 高亮卡片樣式 */
.expert-choice {
    position: relative;
    /*padding-top: 50px;*/
    border: 2px solid #007bff; /* 主題藍色邊框 */
    border: 2px solid #76b532;
    background-color: #76b53221;
}
.expert-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    background-color: #007bff;
    color: white;
    padding: 5px 0;
    font-size: 13px;
    font-weight: 600;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.expert-choice .card-price .price-value {
    color: #d9534f; /* 突顯價格使用暖色系 */
}

/* 響應式調整 (Bootstrap 3 預設響應式) */
@media (max-width: 991px) { /* Tablet and smaller */
    .col-md-3 {
        width: 50%; /* 在平板上兩顆一列 */
    }
}
@media (max-width: 767px) { /* Phone */
    .col-xs-12 {
        width: 100%; /* 在手機上單顆一列 */
    }
}
.modal-dialog-vcenter {
    /* display: flex; */
    align-items: center;
    min-height: calc(96% - 3.5rem);
}

#myBackdrop {
    position: fixed;
    bottom: 0;
    z-index: 1039;
}