.plu-pattern-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    max-width: 420px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    font-family: 'Consolas', sans-serif;
}

/* Стиль прописан в файле pattern-lock-user.php*/
#plu-canvas {
    border: 1px solid #fff;
    border-radius: 15px;
    /* background: #f0f4f8;*/
    width: 360px;
    height: 360px;
    max-width: 90vw;
    max-height: 90vw;
    margin-bottom: 10px;
    display: block;
    touch-action: none;
}

.plu-controls {
    display: block;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.plu-controls button {
    padding: 10px 18px;
    border: none;
    background: linear-gradient(135deg,#0b84ff,#006bb3);
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
}

.plu-controls button:active { transform: translateY(1px); }

#plu-status {
    margin-top: 10px;
    min-height: 18px;
    color: #dc3545;
    font-size: 15px;
}

#plu-status-pass {
    margin-top: 10px;
    min-height: 18px;
    color: #dc3545;
    font-size: 15px;
}

#plu-pattern-container {
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
}

#plu-password-container{
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
}

.plu-note {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
    text-align: initial;
    font-size: 14px;
}





/* Стиль кнопки копировать ссылку */
.plu-copy-btn{
    background: #116de3;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
}



/* Стиль кнопки Telegram Chat ID */
.plu-telegram-save-btn {
    margin-top: 10px;
    background: #116de3;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.plu-telegram-save-btn:hover {
    background: #0d57b2;
}

/* Поле ввода Telegram */
.plu-telegram-input {
    width: 100%;
    max-width: 300px;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
	
}


.plu-pattern-dot {
    width: 50px;
    height: 50px;
    border: 2px solid #333; /* цвет рамки точки */
    border-radius: 50%;
    background: #fff; /* цвет заливки точки */
    position: absolute;
    cursor: pointer;
}

.plu-pattern-dot.active {
    background: #116de3; /* цвет активной точки */
    border-color: #116de3; /* цвет рамки активной точки */
}

.plu-pattern-dot.start {
    background: #e74c3c; /* цвет начальной точки */
    border-color: #e74c3c;
}
.plu-show-more {
    margin-top: 10px;
    background: #116de3;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
	}
	
/* Общий шрифт для страницы */
.pattern-container, 
.pattern-container input, 
.pattern-container textarea, 
.pattern-container button {
    font-family: "Consolas", Sans-serif; /* замени на нужный */
}	
	
/*Надпись после кгопок граф ключ и пароль */
/*
#plu-pattern-container::before {
    content: "Masters.in.ua – Ваш графический ключ";
    display: block;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif; /* можно сменить шрифт */
}
/*	
#plu-password-container::before {
    content: "Masters.in.ua – Ваш пароль";
    display: block;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}
	
	
	
	
