/**
 * @author VisTech.Projects LLC
 */

#app-store-dialog {
    border: none;
    border-radius: 8px;
    padding: 0;
    width: 320px;
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
    font-family: Roboto, Arial, sans-serif;
    color: #3c4043;
}

#app-store-dialog::backdrop {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 10px 24px;
}

.dialog-header h2 {
    margin: 0;
    font-size: 14pt;
    font-weight: 500;
    //color: #1a73e8;
}

/* Minimal cross action button styling */
.close-btn {
    background: transparent;
    border: none;
    color: #70757a;
    cursor: pointer;
    font-size: 14pt;
    padding: 4px;
    line-height: 1;
    border-radius: 50%;
    transition: background 0.15s;
}

.close-btn:hover {
    background: #f1f3f4;
    color: #1a73e8;
}


.dialog-body { 
    padding: 0 24px 24px 24px;
    font-size: 10pt;
    line-height: 1.5;
}

.dialog-body p {
    margin-top: 0;
    margin-bottom: 20px;
    color: #70757a; /* Secondary description gray text */
}


.store-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.google-maps-style-btn {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    color: #3c4043;
    text-decoration: none;
    padding: 10px 14px;
    border: 1px solid #dadce0;
    border-radius: 6px;
    font-size: 9.5pt;
    font-weight: 500;
    transition: background 0.15s, box-shadow 0.15s;
}

.google-maps-style-btn:hover {
    background: #f1f3f4;
    border-color: #1a73e8;
}


.platform-badge {
    background: #3c4043;
    color: #ffffff;
    border-radius: 4px;
    padding: 2px 6px;
    font-family: monospace;
    font-size: 8pt;
    font-weight: bold;
    margin-right: 12px;
    min-width: 50px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.action-text {
    flex-grow: 1;
}