/* ================================
   Daniel Character Collection UI
   Author: Daniel Forest & Nova
   Company: Luxury Lover Toys & Robots
================================ */

.dcc-container {
    max-width: 720px;
    margin: 40px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Header */
.dcc-header {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

/* Chat text */
.dcc-chat {
    font-size: 17px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 20px;
    max-height: 260px;
    overflow-y: auto;
}

/* Buttons container */
.dcc-controls {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 10px;
}

/* Buttons */
.dcc-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    background: #f4f4f4;
}

.dcc-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Talk button */
.dcc-btn-talk {
    background: #1e88e5;
    color: #fff;
}

.dcc-btn-talk.active {
    background: #e53935;
}

/* Stop button */
.dcc-btn-stop {
    background: #e53935;
    color: #fff;
}

/* Clear button */
.dcc-btn-clear {
    background: #f9a825;
    color: #000;
}
