/* Wrapper */
.dm-container {
    max-width: 900px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Breadcrumb */
.dm-breadcrumb {
    font-size: 14px;
    margin-bottom: 10px;
}

.dm-breadcrumb a {
    color: #0073aa;
    text-decoration: none;
}

.dm-breadcrumb a:hover {
    text-decoration: underline;
}

/* Back Button */
.dm-back {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Forms */
.dm-form {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.dm-form input,
.dm-form select,
.dm-form button {
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.dm-form button {
    background: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
}

.dm-form button:hover {
    background: #005a87;
}

/* Items */
.dm-list {
    border-top: 1px solid #eee;
}

.dm-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s;
}

.dm-item:hover {
    background: #f9f9f9;
}

/* Left side */
.dm-item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dm-icon {
    font-size: 18px;
}

/* Links */
.dm-item a {
    text-decoration: none;
    color: #222;
}

.dm-item a:hover {
    color: #0073aa;
}

/* Actions */
.dm-actions {
    display: flex;
    gap: 8px;
}

.dm-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 14px;
}

.dm-btn:hover {
    opacity: 0.7;
}

/* Empty */
.dm-empty {
    padding: 20px;
    text-align: center;
    color: #888;
}
