/* ==========================================================
   FLIPPER AI WORKBENCH
   Version 1.0
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    width:100%;
    height:100%;
    overflow:hidden;
    font-family:Segoe UI, Roboto, Arial, sans-serif;
    background:#ececec;
    color:#222;
}

/* ==========================================================
   TOP BAR
========================================================== */

.topbar{

    height:64px;

    background:#1f2937;

    color:white;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 25px;

    border-bottom:1px solid #111;

}

.brand{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo{

    font-size:34px;

}

.brand h1{

    font-size:22px;

    font-weight:600;

}

.brand small{

    color:#b7c2d1;

}

.topbar nav{

    display:flex;

    gap:10px;

}

.top-button{

    background:#334155;

    color:white;

    border:none;

    border-radius:6px;

    padding:10px 18px;

    cursor:pointer;

    transition:.2s;

}

.top-button:hover{

    background:#475569;

}

/* ==========================================================
   LAYOUT
========================================================== */

.layout{

    display:flex;

    height:calc(100vh - 64px);

}

/* ==========================================================
   SIDEBAR
========================================================== */

.sidebar{

    width:390px;

    background:#f5f5f5;

    border-right:1px solid #d8d8d8;

    overflow:auto;

    padding:18px;

}

/* ==========================================================
   PANELS
========================================================== */

.panel{

    background:white;

    border-radius:10px;

    padding:16px;

    margin-bottom:18px;

    box-shadow:0 2px 8px rgba(0,0,0,.06);

}

.panel h2{

    font-size:16px;

    margin-bottom:12px;

    color:#1f2937;

}

/* ==========================================================
   TEXTAREA
========================================================== */

textarea{

    width:100%;

    min-height:180px;

    resize:vertical;

    border:1px solid #cfcfcf;

    border-radius:8px;

    padding:14px;

    font-size:15px;

    font-family:inherit;

    line-height:1.45;

    outline:none;

    transition:.2s;

}

textarea:focus{

    border-color:#2563eb;

    box-shadow:0 0 0 3px rgba(37,99,235,.15);

}

/* ==========================================================
   BUTTON
========================================================== */

#analyze-button{

    width:100%;

    margin-top:14px;

    padding:14px;

    border:none;

    border-radius:8px;

    background:#2563eb;

    color:white;

    font-size:16px;

    cursor:pointer;

    transition:.2s;

}

#analyze-button:hover{

    background:#1d4ed8;

}

/* ==========================================================
   RESULT AREAS
========================================================== */

#analysis,
#main-part,
#related-parts,
#documents{

    min-height:60px;

    color:#444;

    line-height:1.5;

    font-size:14px;

}

/* ==========================================================
   PDF VIEWER
========================================================== */

.viewer{

    flex:1;

    display:flex;

    flex-direction:column;

    background:#d7d7d7;

}

/* ==========================================================
   TOOLBAR
========================================================== */

.pdf-toolbar{

    height:52px;

    background:white;

    border-bottom:1px solid #d5d5d5;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 18px;

}

.toolbar-group{

    display:flex;

    align-items:center;

    gap:12px;

}

.pdf-toolbar button{

    width:38px;

    height:38px;

    border:none;

    border-radius:6px;

    background:#f1f1f1;

    cursor:pointer;

    font-size:18px;

    transition:.2s;

}

.pdf-toolbar button:hover{

    background:#dddddd;

}

/* ==========================================================
   PDF AREA
========================================================== */

#pdf-container{

    flex:1;

    overflow:auto;

    display:flex;

    justify-content:center;

    align-items:flex-start;

    padding:30px;

}

/* ==========================================================
   PDF PAGE
========================================================== */

#pdf-canvas{

    background:white;

    box-shadow:

        0 0 20px rgba(0,0,0,.20),

        0 0 2px rgba(0,0,0,.30);

}

/* ==========================================================
   SCROLLBAR
========================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:#bfbfbf;

    border-radius:8px;

}

::-webkit-scrollbar-thumb:hover{

    background:#9d9d9d;

}
