*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#f5f7fb;
}

.login-container{
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
}

.login-box{
    width:450px;
    background:#fff;
    padding:35px;
    border-radius:10px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.login-box h2{
    text-align:center;
    color:#2563eb;
    margin-bottom:10px;
}

.login-box p{
    text-align:center;
    margin-bottom:30px;
    color:#777;
}

.logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.logo-wrap img {
    max-width: 65px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
}

.form-group input{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:6px;
    outline:none;
}

button{
    width:100%;
    padding:13px;
    background:#2563eb;
    color:#fff;
    border:none;
    border-radius:6px;
    cursor:pointer;
    font-size:16px;
}

button:hover{
    background:#1d4ed8;
}

.error{
    background:#fde8e8;
    color:#d8000c;
    padding:10px;
    border-radius:6px;
    margin-bottom:20px;
    text-align:center;
}

.page{

    width:95%;
    margin:40px auto;

}

.page-header{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;

}

.btn{

    background:#2563eb;
    color:#fff;
    padding:12px 18px;
    text-decoration:none;
    border-radius:6px;

}

table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    box-shadow:0 3px 10px rgba(0,0,0,.05);
}

th{

    background:#2563eb;
    color:#fff;
    padding:14px;

}

td{
    text-align:center;
    padding:14px;
    border-bottom:1px solid #eee;

}

.badge{

    padding:6px 12px;
    border-radius:20px;
    font-size:12px;

}

.success{

    background:#dcfce7;
    color:#15803d;

}

.warning{

    background:#fef3c7;
    color:#b45309;

}

.action-buttons{
    white-space:nowrap;
}

.action-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    border-radius:8px;
    text-decoration:none;
    color:#fff;
    margin-right:6px;
}

.action-btn,
.connect-btn {
    transition:.25s;
}

.action-btn:hover,
.connect-btn:hover {
    transform:translateY(-2px);
}

.connect-btn{
    background:#16a34a;
}

.edit{
    background:#2563eb;
}

.delete{
    background:#dc2626;
}

.danger{
    background:#fee2e2;
    color:#b91c1c;
}

.copy {
    background: #e2e2e2;
    color: #000;
    margin-left: 4px;
}

.method-pill{
    display:inline-block;
    padding:6px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
    text-align:center;
    min-width:60px;
    color:#fff;
}

/* GET */
.method-pill.get{
    background:#2563eb;
}

/* POST */
.method-pill.post{
    background:#16a34a;
}

/* PUT */
.method-pill.put{
    background:#f59e0b;
}

/* PATCH */
.method-pill.patch{
    background:#8b5cf6;
}

/* DELETE */
.method-pill.delete{
    background:#dc2626;
}

#apiTitle {
    color: #2563eb;
}

.modal{

    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    justify-content:center;
    align-items:center;
    z-index:9999;

}

.modal-content{

    width:800px;
    max-width:95%;
    max-height:90vh;
    overflow:auto;
    background:#fff;
    border-radius:10px;
    padding:30px;
    position:relative;

}

.close{

    position:absolute;
    right:20px;
    top:15px;
    cursor:pointer;
    font-size: 40px;
    font-weight: 600;
    color:#d8000c;

}

.api-section{

    margin-top:20px;

}

.api-section pre{

    background:#1f2937;
    color:#fff;
    padding:15px;
    border-radius:8px;
    overflow:auto;
    margin-top:10px;

}