/* Style chung cho bộ công cụ marketing */

.ccm-container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.ccm-container h1,
.ccm-container h2 {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #333;
    margin-bottom: 10px;
}

.ccm-tool-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ccm-tool-list li {
    padding: 8px 12px;
    margin: 6px 0;
    background: #f8f8f8;
    border-radius: 6px;
    transition: background 0.2s;
}

.ccm-tool-list li:hover {
    background: #eaeaea;
}

.ccm-tool-list a {
    text-decoration: none;
    color: #0073aa;
    font-weight: 600;
}

.ccm-tool-list a:hover {
    color: #005177;
}
.ccm-tool table thead th {
    text-align: left;
}

.ccm-tool-list li a {
    color: var(--theme-primary-hue);
    
    opacity: 0.7;
    font-weight: bold;
    display: block;
    transition: 0.3s ease-in;
        border-bottom: solid 1px #ccc;
    padding-bottom: 5px;
    margin-bottom: 5px;
    
}
.ccm-tool-list li a:hover {
        opacity: 1;
        color: var(--theme-text-hue);
    }
.ccm-tool-list li a:before {
    color: #f00;
    content: '\f061';
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    margin-right: 5px;
}
.ccm-tool a.btn {
    align-items: center;
    text-decoration: none;
    padding: 10px;
    color: #fff;
    border-radius: var(--radius);
    background-color: var(--theme-primary-hue);
}