.dialog-share-trip .dialog-inner {
    align-items: stretch;
    gap: 16px;
}

.dialog-share-trip .dialog-title {
    text-align: left;
    width: 100%;
    margin-bottom: 0;
}

.dialog-share-trip-copy {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dialog-share-trip-copy label {
    color: #556567;
    font-size: 13px;
    font-weight: 600;
}

.dialog-share-trip-link {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid #dbe3e4;
    border-radius: 14px;
    background: #f7fafb;
    color: #132d2f;
    font-size: 13px;
    line-height: 1.5;
    word-break: break-all;
}

.dialog-share-trip-status {
    min-height: 20px;
    color: #6b7b7c;
    font-size: 12px;
}

.dialog-share-trip-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.dialog-share-trip-actions button,
.dialog-share-trip-actions a {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid #dbe3e4;
    background: #ffffff;
    color: #132d2f;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease all;
}

.dialog-share-trip-actions a{
    display: flex;
    height: 44px;
    margin: auto;
}

.dialog-share-trip-actions button:hover,
.dialog-share-trip-actions a:hover {
    border-color: #132d2f;
}

.dialog-share-trip-actions .primary {
    background: #132d2f;
    color: #ffffff;
    border-color: #132d2f;
}

.dialog-share-trip-actions .danger {
    color: #d14c3d;
}

.dialog-share-trip-actions button:disabled,
.dialog-share-trip-actions a[aria-disabled="true"] {
    opacity: 0.55;
    pointer-events: none;
}

@media (max-width: 560px) {
    .dialog-share-trip-actions {
        grid-template-columns: 1fr;
    }
}
