/* Messaging Platforms Styles */
.messaging-region {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.messaging-region:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-color: rgba(42, 135, 237, 0.1);
}

.region-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.region-header img {
    width: 28px;
    height: 28px;
}

.region-title {
    font-family: 'TildaSans', sans-serif;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.messaging-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

.msg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(42, 135, 237, 0.05);
    height: 48px;
}

.msg-btn:hover {
    transform: translateY(-3px);
    background: rgba(42, 135, 237, 0.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.msg-btn img {
    height: 32px;
    width: auto;
    transition: transform 0.3s ease;
}

.msg-btn:hover img {
    transform: scale(1.1);
}

.msg-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, bottom 0.2s ease;
}

.msg-btn:hover .msg-tooltip {
    opacity: 1;
    bottom: -35px;
}
